Merge branch '2.0.x'
This commit is contained in:
commit
d12a099a6d
|
|
@ -188,7 +188,6 @@ public class LiveReloadServerTests {
|
|||
super.run();
|
||||
}
|
||||
catch (ConnectionClosedException ex) {
|
||||
ex.printStackTrace();
|
||||
synchronized (MonitoredLiveReloadServer.this.monitor) {
|
||||
MonitoredLiveReloadServer.this.closedExceptions.add(ex);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -162,7 +162,6 @@ public class SocketTargetServerConnectionTests {
|
|||
channel.close();
|
||||
}
|
||||
catch (Exception ex) {
|
||||
ex.printStackTrace();
|
||||
fail();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -124,7 +124,6 @@ public class CollectionBinderTests {
|
|||
fail("No exception thrown");
|
||||
}
|
||||
catch (BindException ex) {
|
||||
ex.printStackTrace();
|
||||
Set<ConfigurationProperty> unbound = ((UnboundConfigurationPropertiesException) ex
|
||||
.getCause()).getUnboundProperties();
|
||||
assertThat(unbound).hasSize(1);
|
||||
|
|
@ -147,7 +146,6 @@ public class CollectionBinderTests {
|
|||
fail("No exception thrown");
|
||||
}
|
||||
catch (BindException ex) {
|
||||
ex.printStackTrace();
|
||||
Set<ConfigurationProperty> unbound = ((UnboundConfigurationPropertiesException) ex
|
||||
.getCause()).getUnboundProperties();
|
||||
assertThat(unbound).hasSize(1);
|
||||
|
|
|
|||
|
|
@ -144,7 +144,6 @@ public class BeanCurrentlyInCreationFailureAnalyzerTests {
|
|||
return null;
|
||||
}
|
||||
catch (Exception ex) {
|
||||
ex.printStackTrace();
|
||||
return ex;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue