File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
src/test/java/com/ffxivcensus/gatherer Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -52,9 +52,6 @@ public class GathererControllerTest {
5252 */
5353 private static String dbHost ;
5454
55- private final ByteArrayOutputStream outContent = new ByteArrayOutputStream ();
56- private final ByteArrayOutputStream errContent = new ByteArrayOutputStream ();
57-
5855 @ BeforeClass
5956 public static void setUpBaseClass () {
6057 try {
@@ -74,8 +71,6 @@ public static void setUpBaseClass() {
7471 */
7572 @ org .junit .Before
7673 public void setUpDB () {
77- System .setOut (new PrintStream (outContent ));
78- System .setErr (new PrintStream (errContent ));
7974 StringBuilder sbSQL = new StringBuilder ();
8075 //DROP existing test tables
8176 sbSQL .append ("DROP TABLE tblplayers_test;" );
@@ -95,12 +90,6 @@ public void setUpDB() {
9590 closeConnection (conn );
9691 }
9792
98- @ org .junit .After
99- public void cleanUpStreams () {
100- System .setOut (null );
101- System .setErr (null );
102- }
103-
10493 /**
10594 * Test gathering run of range from 11886902 to 11887010
10695 *
You can’t perform that action at this time.
0 commit comments