Remove debugging messages

This commit is contained in:
DanLT 2021-06-21 07:12:47 -08:00
parent 975096b221
commit 492646edc3
5 changed files with 0 additions and 12 deletions

View File

@ -49,7 +49,6 @@ public class Iris extends VolmitPlugin
public static boolean lowMemoryMode = false;
public static IrisCompat compat;
public static FileWatcher configWatcher;
public static boolean warnsmoothie = true;
@Permission
public static PermissionIris perm;
@ -130,13 +129,6 @@ public class Iris extends VolmitPlugin
return false;
}
public static void warnsmoothie(){
if (warnsmoothie){
warn("The smoothieMap 'illegal reflective access operation' is required and can be safely ignored");
warnsmoothie = false;
}
}
@Override
public void start()
{

View File

@ -102,7 +102,6 @@ public class IrisEngineCompound implements EngineCompound {
Iris.warn("Couldn't properly find the stronghold position for this world. Is this headless mode? Are you not using 1.16 or higher?");
Iris.warn(" -> Setting default stronghold position");
e.printStackTrace();
Iris.info("Got this far (3)");
StringBuilder positions = new StringBuilder();
for (IrisPosition pos : strongholds){
positions.append("(").append(pos.getX()).append(",").append(pos.getY()).append(",").append(pos.getZ()).append(") ");

View File

@ -216,7 +216,6 @@ public class IrisObject extends IrisRegistrant
public IrisObject(int w, int h, int d)
{
Iris.warnsmoothie();
blocks = new KMap<>();
states = new KMap<>();
this.w = w;

View File

@ -26,7 +26,6 @@ public class Section {
public Section(CompoundTag sectionRoot, int dataVersion) {
this(sectionRoot, dataVersion, ALL_DATA);
Iris.warnsmoothie();
}
public Section(CompoundTag sectionRoot, int dataVersion, long loadFlags) {

View File

@ -13,7 +13,6 @@ public class CompoundTag extends Tag<Map<String, Tag<?>>> implements Iterable<Ma
public CompoundTag() {
super(createEmptyValue());
Iris.warnsmoothie();
}
@Override