geforkt von Mirrors/FastAsyncWorldEdit
Removed commented out classes
Dieser Commit ist enthalten in:
Ursprung
8c9090a21d
Commit
cd8bc6f733
@ -1,29 +0,0 @@
|
||||
//package com.boydti.fawe.logging;
|
||||
//
|
||||
//import org.primesoft.blockshub.api.BlockData;
|
||||
//
|
||||
//public class MutableBlockData extends BlockData {
|
||||
// public int data;
|
||||
// public int id;
|
||||
//
|
||||
// public MutableBlockData() {
|
||||
// super(0, 0);
|
||||
// this.id = 0;
|
||||
// this.data = 0;
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public int getType() {
|
||||
// return id;
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public int getData() {
|
||||
// return data;
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public boolean isAir() {
|
||||
// return id == 0;
|
||||
// }
|
||||
//}
|
@ -1,47 +0,0 @@
|
||||
//package com.boydti.fawe.logging;
|
||||
//
|
||||
//import org.primesoft.blockshub.api.Vector;
|
||||
//
|
||||
//public class MutableVector3 extends Vector {
|
||||
//
|
||||
// public double x, y, z;
|
||||
//
|
||||
// public MutableVector3() {
|
||||
// super(0, 0, 0);
|
||||
// this.x = 0;
|
||||
// this.y = 0;
|
||||
// this.z = 0;
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public double getX() {
|
||||
// return x;
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public double getY() {
|
||||
// return y;
|
||||
// }
|
||||
//
|
||||
// @Override
|
||||
// public double getZ() {
|
||||
// return z;
|
||||
// }
|
||||
//
|
||||
// public boolean equals(Object obj) {
|
||||
// if (!(obj instanceof Vector)) {
|
||||
// return false;
|
||||
// } else {
|
||||
// Vector v = (Vector) obj;
|
||||
// return this.x == v.getX() && this.z == v.getZ() && this.y == v.getY();
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// public int hashCode() {
|
||||
// byte hash = 3;
|
||||
// int hash1 = 59 * hash + (int) (Double.doubleToLongBits(this.x) ^ Double.doubleToLongBits(this.x) >>> 32);
|
||||
// hash1 = 59 * hash1 + (int) (Double.doubleToLongBits(this.y) ^ Double.doubleToLongBits(this.y) >>> 32);
|
||||
// hash1 = 59 * hash1 + (int) (Double.doubleToLongBits(this.z) ^ Double.doubleToLongBits(this.z) >>> 32);
|
||||
// return hash1;
|
||||
// }
|
||||
//}
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren