Removed temporary sysouts

This commit is contained in:
Jascha Starke 2013-11-04 16:45:20 +01:00
parent 808b50fb61
commit dfb289fdd9
2 changed files with 4 additions and 2 deletions

View file

@ -73,7 +73,8 @@ public class CreativeControlImportThread extends DatabaseMigrationThread {
Cuboid c = new Cuboid();
c.add(new Location(world, x, 0, z));
c.add(new Location(world, x + CHUNK_SIZE, world.getMaxHeight(), z + CHUNK_SIZE));
System.out.println("Fetching Cuboid: " + c.toString());
if (mod.isDebug())
mod.getLog().debug("Fetching Cuboid: " + c.toString());
for (BlockState bs : iterateAllIn(c)) {
if (mode == Mode.UPDATE) {

View file

@ -103,7 +103,8 @@ public class DatabaseMigrationThread extends Thread implements IDebugLogHolder {
Cuboid c = new Cuboid();
c.add(new Location(world, x, 0, z));
c.add(new Location(world, x + CHUNK_SIZE, world.getMaxHeight(), z + CHUNK_SIZE));
System.out.println("Fetching Cuboid: " + c.toString());
if (mod.isDebug())
mod.getLog().debug("Fetching Cuboid: " + c.toString());
for (BlockState bs : sourceDB.iterateAllIn(c)) {
if (mode == Mode.UPDATE) {