mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-01 02:46:41 +00:00
Remove dead code and minor changes to existing code
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user