Remove ex.printStackTrace() in tests

Closes gh-13952
This commit is contained in:
Johnny Lim
2018-07-31 14:31:38 +09:00
committed by Stephane Nicoll
parent 3d85873a8a
commit d4fba783fb
4 changed files with 0 additions and 5 deletions

View File

@@ -188,7 +188,6 @@ public class LiveReloadServerTests {
super.run();
}
catch (ConnectionClosedException ex) {
ex.printStackTrace();
synchronized (MonitoredLiveReloadServer.this.monitor) {
MonitoredLiveReloadServer.this.closedExceptions.add(ex);
}

View File

@@ -162,7 +162,6 @@ public class SocketTargetServerConnectionTests {
channel.close();
}
catch (Exception ex) {
ex.printStackTrace();
fail();
}
}