Final polish before 1.0.0.RC1
This commit is contained in:
@@ -50,9 +50,9 @@ public class SampleMongoApplicationTests {
|
||||
output.contains("firstName='Alice', lastName='Smith'"));
|
||||
}
|
||||
|
||||
private boolean serverNotRunning(IllegalStateException e) {
|
||||
private boolean serverNotRunning(IllegalStateException ex) {
|
||||
@SuppressWarnings("serial")
|
||||
NestedCheckedException nested = new NestedCheckedException("failed", e) {
|
||||
NestedCheckedException nested = new NestedCheckedException("failed", ex) {
|
||||
};
|
||||
if (nested.contains(IOException.class)) {
|
||||
Throwable root = nested.getRootCause();
|
||||
|
||||
Reference in New Issue
Block a user