From 3ed2e57f3a89f48bd0edac7b930a91e51db57679 Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Fri, 27 Jul 2018 13:37:25 +1000 Subject: [PATCH] Comment out unfinished code --- .../boydti/fawe/command/AnvilCommands.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/core/src/main/java/com/boydti/fawe/command/AnvilCommands.java b/core/src/main/java/com/boydti/fawe/command/AnvilCommands.java index ff5ce0ee..1eb6ab67 100644 --- a/core/src/main/java/com/boydti/fawe/command/AnvilCommands.java +++ b/core/src/main/java/com/boydti/fawe/command/AnvilCommands.java @@ -321,16 +321,16 @@ public class AnvilCommands { if (result != null) player.print(BBC.getPrefix() + BBC.VISITOR_BLOCK.format(result.getTotal())); } - @Command( - aliases = {"debugfixroads", }, - desc = "debug - do not use" - ) - @CommandPermissions("worldedit.anvil.debugfixroads") - public void debugfixroads(Player player, String folder) throws WorldEditException { - DebugFixP2Roads filter = new DebugFixP2Roads(); - DebugFixP2Roads result = runWithWorld(player, folder, filter, true, true); - if (result != null) player.print(BBC.getPrefix() + BBC.VISITOR_BLOCK.format(result.getTotal())); - } +// @Command( +// aliases = {"debugfixroads", }, +// desc = "debug - do not use" +// ) +// @CommandPermissions("worldedit.anvil.debugfixroads") +// public void debugfixroads(Player player, String folder) throws WorldEditException { +// DebugFixP2Roads filter = new DebugFixP2Roads(); +// DebugFixP2Roads result = runWithWorld(player, folder, filter, true, true); +// if (result != null) player.print(BBC.getPrefix() + BBC.VISITOR_BLOCK.format(result.getTotal())); +// } @Command( aliases = {"replaceallpattern", "reap", "repallpat"},