From 032942c0e83fc9bc41718242bd79e78313949633 Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Mon, 11 Nov 2019 20:18:22 +0000 Subject: [PATCH] Remove debug --- .../sk89q/worldedit/extent/clipboard/Clipboard.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/worldedit-core/src/main/java/com/sk89q/worldedit/extent/clipboard/Clipboard.java b/worldedit-core/src/main/java/com/sk89q/worldedit/extent/clipboard/Clipboard.java index 1d07d58d6..4cb73a082 100644 --- a/worldedit-core/src/main/java/com/sk89q/worldedit/extent/clipboard/Clipboard.java +++ b/worldedit-core/src/main/java/com/sk89q/worldedit/extent/clipboard/Clipboard.java @@ -327,17 +327,6 @@ public interface Clipboard extends Extent, Iterable, Closeable { final int rely = to.getBlockY() - origin.getBlockY(); final int relz = to.getBlockZ() - origin.getBlockZ(); -// this.apply(this, new Filter() { -// @Override -// public void applyBlock(FilterBlock block) { -// -// } -// }); - - System.out.println("Rel " + relx + "," + rely + "," + relz + " | " + to + " | " + origin); - - System.out.println("TODO optimize paste using above apply"); - Operation visitor = new RegionVisitor(region, new RegionFunction() { // MutableBlockVector2 mpos2d_2 = new MutableBlockVector2(); MutableBlockVector2 mpos2d = new MutableBlockVector2(); @@ -349,7 +338,6 @@ public interface Clipboard extends Extent, Iterable, Closeable { @Override public boolean apply(BlockVector3 mutable) throws WorldEditException { BlockState block = getBlock(mutable); - System.out.println("Pos " + mutable); int xx = mutable.getBlockX() + relx; int zz = mutable.getBlockZ() + relz; if (copyBiomes && xx != mpos2d.getBlockX() && zz != mpos2d.getBlockZ()) {