Remove unwanted log

This commit is contained in:
Blue (Lukas Rieger) 2020-04-16 15:42:20 +02:00
parent eb93b7d1ab
commit 2f79c61d8c

View File

@ -32,7 +32,6 @@
import com.flowpowered.math.vector.Vector2i; import com.flowpowered.math.vector.Vector2i;
import com.flowpowered.math.vector.Vector3i; import com.flowpowered.math.vector.Vector3i;
import de.bluecolored.bluemap.core.logger.Logger;
import de.bluecolored.bluemap.core.util.AABB; import de.bluecolored.bluemap.core.util.AABB;
/** /**
@ -48,8 +47,6 @@ public SlicedWorld(World world, Vector3i min, Vector3i max) {
this.world = world; this.world = world;
this.min = min; this.min = min;
this.max = max; this.max = max;
Logger.global.logInfo("Sliced: " + min + max);
} }
@Override @Override