Removed System.out.println debugging

This commit is contained in:
Justin
2019-05-27 18:53:17 +10:00
parent dece3f1351
commit 20897261d3
6 changed files with 1 additions and 9 deletions

View File

@@ -496,7 +496,6 @@ public class BAToolsPlugin extends Plugin implements KeyListener
calledPoison = ItemID.POISONED_WORMS; calledPoison = ItemID.POISONED_WORMS;
break; break;
} }
System.out.println(target.equals(item));
if (target.equals(item))//if targeting the item itself 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 if (calledPoison != 0 && itemId != calledPoison)//if no call or chosen item is not the called one

View File

@@ -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 // 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. // against the playerName in the player cache.
String finalPlayerName = playerName.replace('\u00A0', ' '); String finalPlayerName = playerName.replace('\u00A0', ' ');
System.out.println(finalPlayerName);
List<Player> players = client.getPlayers(); List<Player> players = client.getPlayers();
Optional<Player> targetPlayer = players.stream() Optional<Player> targetPlayer = players.stream()
.filter(Objects::nonNull) .filter(Objects::nonNull)

View File

@@ -255,7 +255,6 @@ public class MiningPlugin extends Plugin
{ {
GameObject previous = event.getPrevious(); GameObject previous = event.getPrevious();
GameObject gameObject = event.getGameObject(); GameObject gameObject = event.getGameObject();
System.out.println("Hey");
rocks.remove(previous); rocks.remove(previous);
if (MINING_ROCKS.contains(gameObject.getId())) if (MINING_ROCKS.contains(gameObject.getId()))
{ {

View File

@@ -113,11 +113,7 @@ public class Sudoku
{ {
System.out.print(" " + board[i][j]); System.out.print(" " + board[i][j]);
} }
System.out.println();
} }
System.out.println();
} }
public int[][] getBoard() public int[][] getBoard()

View File

@@ -271,7 +271,7 @@ class LootPanel extends JPanel
} }
catch (InterruptedException e) catch (InterruptedException e)
{ {
System.out.println(e.getMessage()); log.warn("Error in playback: " + e.getMessage());
} }
} }
} }

View File

@@ -121,7 +121,6 @@ public class ZulrahPhase
case PILLAR_EAST_OUTSIDE: case PILLAR_EAST_OUTSIDE:
return new LocalPoint(startTile.getX() + (4 * 128), startTile.getY() - (4 * 128)); return new LocalPoint(startTile.getX() + (4 * 128), startTile.getY() - (4 * 128));
} }
System.out.println("Fell through switch block");
return startTile; return startTile;
} }