diff --git a/src/main/java/com/ffxivcensus/gatherer/Player.java b/src/main/java/com/ffxivcensus/gatherer/Player.java index 03bd0d0..a59db4b 100644 --- a/src/main/java/com/ffxivcensus/gatherer/Player.java +++ b/src/main/java/com/ffxivcensus/gatherer/Player.java @@ -2082,7 +2082,6 @@ private static int[] getLevelsFromPage(Document doc) throws Exception { levels.add(Integer.parseInt(strLvl)); } } - System.out.print(levelBoxes.size()); } //Initialize int array @@ -2413,4 +2412,4 @@ public int getBitHasVath() { public void setHasVath(boolean hasVath) { this.hasVath = hasVath; } -} \ No newline at end of file +} diff --git a/src/test/java/com/ffxivcensus/gatherer/PlayerTest.java b/src/test/java/com/ffxivcensus/gatherer/PlayerTest.java index 4d78fa4..d0e35c6 100644 --- a/src/test/java/com/ffxivcensus/gatherer/PlayerTest.java +++ b/src/test/java/com/ffxivcensus/gatherer/PlayerTest.java @@ -226,7 +226,6 @@ public void testUnplayedPlayer() throws Exception { assertEquals(player.getBitHasARRCollectors(), 0); //Tricky to test this - testing here that it was at the very least set to some value other than what it is set to a value other than that which it is initialized assertTrue(player.getDateImgLastModified() != new Date()); - assertFalse(player.isActive()); //Test get minions method assertTrue(player.getMinions().size() == 0); @@ -295,4 +294,4 @@ public void testGetPlayerInvalid() { } } -} \ No newline at end of file +}