Remove dead code and minor changes to existing code

This commit is contained in:
MattBDev
2020-02-18 13:18:43 -05:00
parent 3e718e2e0b
commit 728b36cd8c
11 changed files with 303 additions and 1029 deletions

View File

@ -151,7 +151,7 @@ public class MathMan {
}
public static long pairInt(int x, int y) {
return (((long) x) << 32) | (y & 0xffffffffL);
return ((long) x << 32) | (y & 0xffffffffL);
}
public static long tripleWorldCoord(int x, int y, int z) {