Removed debug prints.

This commit is contained in:
Tobias Ottenweller 2013-06-23 19:55:03 +02:00
parent 81daa83f44
commit ec2caaad97
2 changed files with 0 additions and 6 deletions

View File

@ -312,10 +312,6 @@ public class GatesManager
protected void addGateByLocations(final Gate g) protected void addGateByLocations(final Gate g)
{ {
if (g.getGateBlockLocations().isEmpty()) {
System.out.println("gate has no block locations!");
}
for (Location l : g.getGateBlockLocations()) { for (Location l : g.getGateBlockLocations()) {
SimpleLocation sl = new SimpleLocation(l); SimpleLocation sl = new SimpleLocation(l);
gatesByLocation.put(sl, g); gatesByLocation.put(sl, g);

View File

@ -73,7 +73,5 @@ public class CommandInfo extends BaseCommand
gate.getExit().getWorld().getName()); gate.getExit().getWorld().getName());
else else
sendMessage(ChatColor.DARK_AQUA + "NOTE: this gate has no exit"); sendMessage(ChatColor.DARK_AQUA + "NOTE: this gate has no exit");
System.out.println("frame: " + gate.getGateFrameBlocks());
} }
} }