Removed System.out.println debugging
This commit is contained in:
@@ -496,7 +496,6 @@ public class BAToolsPlugin extends Plugin implements KeyListener
|
||||
calledPoison = ItemID.POISONED_WORMS;
|
||||
break;
|
||||
}
|
||||
System.out.println(target.equals(item));
|
||||
if (target.equals(item))//if targeting the item itself
|
||||
{
|
||||
if (calledPoison != 0 && itemId != calledPoison)//if no call or chosen item is not the called one
|
||||
|
||||
@@ -167,7 +167,6 @@ public class EquipmentInspectorPlugin extends Plugin
|
||||
// The player menu uses a non-breaking space in the player name, we need to replace this to compare
|
||||
// against the playerName in the player cache.
|
||||
String finalPlayerName = playerName.replace('\u00A0', ' ');
|
||||
System.out.println(finalPlayerName);
|
||||
List<Player> players = client.getPlayers();
|
||||
Optional<Player> targetPlayer = players.stream()
|
||||
.filter(Objects::nonNull)
|
||||
|
||||
@@ -255,7 +255,6 @@ public class MiningPlugin extends Plugin
|
||||
{
|
||||
GameObject previous = event.getPrevious();
|
||||
GameObject gameObject = event.getGameObject();
|
||||
System.out.println("Hey");
|
||||
rocks.remove(previous);
|
||||
if (MINING_ROCKS.contains(gameObject.getId()))
|
||||
{
|
||||
|
||||
@@ -113,11 +113,7 @@ public class Sudoku
|
||||
{
|
||||
System.out.print(" " + board[i][j]);
|
||||
}
|
||||
|
||||
System.out.println();
|
||||
}
|
||||
|
||||
System.out.println();
|
||||
}
|
||||
|
||||
public int[][] getBoard()
|
||||
|
||||
@@ -271,7 +271,7 @@ class LootPanel extends JPanel
|
||||
}
|
||||
catch (InterruptedException e)
|
||||
{
|
||||
System.out.println(e.getMessage());
|
||||
log.warn("Error in playback: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -121,7 +121,6 @@ public class ZulrahPhase
|
||||
case PILLAR_EAST_OUTSIDE:
|
||||
return new LocalPoint(startTile.getX() + (4 * 128), startTile.getY() - (4 * 128));
|
||||
}
|
||||
System.out.println("Fell through switch block");
|
||||
return startTile;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user