From ed58f762fe40f185c2328fdd08c863e3ea416c24 Mon Sep 17 00:00:00 2001 From: Tobias Ottenweller Date: Sun, 10 Feb 2013 03:56:50 +0100 Subject: [PATCH] Removed debug prints. --- src/de/craftinc/gates/commands/BaseCommand.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/de/craftinc/gates/commands/BaseCommand.java b/src/de/craftinc/gates/commands/BaseCommand.java index 6c9bd1a..582409e 100644 --- a/src/de/craftinc/gates/commands/BaseCommand.java +++ b/src/de/craftinc/gates/commands/BaseCommand.java @@ -188,11 +188,6 @@ public abstract class BaseCommand throw new Exception("Cannot check permissons with no gate provided!"); } - System.out.println("************"); - System.out.println(this.gate.getLocation().getWorld()); - System.out.println(this.gate.getExit().getWorld()); - System.out.println("************"); - boolean permAtLocation = Plugin.permission.has(this.gate.getLocation().getWorld(), player.getName(), this.requiredPermission); boolean permAtExit = Plugin.permission.has(this.gate.getExit().getWorld(), player.getName(), this.requiredPermission);