Skip to content

Commit

Permalink
Remove un-necessary print statement (#20)
Browse files Browse the repository at this point in the history
* Remove un-necessary print statement

* Remove isActive assertion

isActive was proved to be incorrect. Remove assertion
  • Loading branch information
ReidWeb authored Jun 13, 2017
1 parent 2262768 commit efc2e6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/main/java/com/ffxivcensus/gatherer/Player.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -2413,4 +2412,4 @@ public int getBitHasVath() {
public void setHasVath(boolean hasVath) {
this.hasVath = hasVath;
}
}
}
3 changes: 1 addition & 2 deletions src/test/java/com/ffxivcensus/gatherer/PlayerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -295,4 +294,4 @@ public void testGetPlayerInvalid() {
}
}

}
}

0 comments on commit efc2e6e

Please sign in to comment.