aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-Server-Patches/0086-Remove-Debug-checks-from-DataBits.patch
blob: 0ca06176e6060be532e3a3aa1b41aaf89f4841f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
From 0bb92ac5ff3a6a438066972a9983b450375cbe92 Mon Sep 17 00:00:00 2001
From: Aikar <aikar@aikar.co>
Date: Tue, 5 Apr 2016 21:38:58 -0400
Subject: [PATCH] Remove Debug checks from DataBits

These are super hot and causing noticeable hits

Before: http://i.imgur.com/nQsMzAE.png
After: http://i.imgur.com/nJ46crB.png

diff --git a/src/main/java/net/minecraft/server/DataBits.java b/src/main/java/net/minecraft/server/DataBits.java
index 08d1be3117..a75b08ee33 100644
--- a/src/main/java/net/minecraft/server/DataBits.java
+++ b/src/main/java/net/minecraft/server/DataBits.java
@@ -15,7 +15,7 @@ public class DataBits {
     }
 
     public DataBits(int i, int j, long[] along) {
-        Validate.inclusiveBetween(1L, 32L, (long) i);
+        //Validate.inclusiveBetween(1L, 32L, (long) i); // Paper
         this.d = j;
         this.b = i;
         this.a = along;
@@ -28,8 +28,8 @@ public class DataBits {
     }
 
     public int a(int i, int j) {
-        Validate.inclusiveBetween(0L, (long) (this.d - 1), (long) i);
-        Validate.inclusiveBetween(0L, this.c, (long) j);
+        //Validate.inclusiveBetween(0L, (long) (this.d - 1), (long) i); // Paper
+        //Validate.inclusiveBetween(0L, this.c, (long) j); // Paper
         int k = i * this.b;
         int l = k >> 6;
         int i1 = (i + 1) * this.b - 1 >> 6;
@@ -50,8 +50,8 @@ public class DataBits {
     }
 
     public void b(int i, int j) {
-        Validate.inclusiveBetween(0L, (long) (this.d - 1), (long) i);
-        Validate.inclusiveBetween(0L, this.c, (long) j);
+        //Validate.inclusiveBetween(0L, (long) (this.d - 1), (long) i); // Paper
+        //Validate.inclusiveBetween(0L, this.c, (long) j); // Paper
         int k = i * this.b;
         int l = k >> 6;
         int i1 = (i + 1) * this.b - 1 >> 6;
@@ -68,7 +68,7 @@ public class DataBits {
     }
 
     public int a(int i) {
-        Validate.inclusiveBetween(0L, (long) (this.d - 1), (long) i);
+        //Validate.inclusiveBetween(0L, (long) (this.d - 1), (long) i); // Paper
         int j = i * this.b;
         int k = j >> 6;
         int l = (i + 1) * this.b - 1 >> 6;
-- 
2.22.0