Skip to content

Commit efc2e6e

Browse files
authored
Remove un-necessary print statement (#20)
* Remove un-necessary print statement * Remove isActive assertion isActive was proved to be incorrect. Remove assertion
1 parent 2262768 commit efc2e6e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/main/java/com/ffxivcensus/gatherer/Player.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2082,7 +2082,6 @@ private static int[] getLevelsFromPage(Document doc) throws Exception {
20822082
levels.add(Integer.parseInt(strLvl));
20832083
}
20842084
}
2085-
System.out.print(levelBoxes.size());
20862085
}
20872086

20882087
//Initialize int array
@@ -2413,4 +2412,4 @@ public int getBitHasVath() {
24132412
public void setHasVath(boolean hasVath) {
24142413
this.hasVath = hasVath;
24152414
}
2416-
}
2415+
}

src/test/java/com/ffxivcensus/gatherer/PlayerTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ public void testUnplayedPlayer() throws Exception {
226226
assertEquals(player.getBitHasARRCollectors(), 0);
227227
//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
228228
assertTrue(player.getDateImgLastModified() != new Date());
229-
assertFalse(player.isActive());
230229

231230
//Test get minions method
232231
assertTrue(player.getMinions().size() == 0);
@@ -295,4 +294,4 @@ public void testGetPlayerInvalid() {
295294
}
296295
}
297296

298-
}
297+
}

0 commit comments

Comments
 (0)