Merge pull request #412 from SRLJustin/master

Removed System.out.println debugging
This commit is contained in:
Tyler Bochard
2019-05-27 04:55:27 -04:00
committed by GitHub
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;
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

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
// 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)

View File

@@ -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()))
{

View File

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

View File

@@ -271,7 +271,7 @@ class LootPanel extends JPanel
}
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:
return new LocalPoint(startTile.getX() + (4 * 128), startTile.getY() - (4 * 128));
}
System.out.println("Fell through switch block");
return startTile;
}