Remove redundant suppression
See gh-26448
This commit is contained in:
@@ -44,7 +44,6 @@ class SampleCouchbaseApplicationTests {
|
||||
}
|
||||
|
||||
private boolean serverNotRunning(RuntimeException ex) {
|
||||
@SuppressWarnings("serial")
|
||||
NestedCheckedException nested = new NestedCheckedException("failed", ex) {
|
||||
};
|
||||
if (nested.contains(FeatureNotAvailableException.class)) {
|
||||
|
||||
@@ -67,7 +67,6 @@ class SampleLiquibaseApplicationTests {
|
||||
.contains("Successfully released change log lock");
|
||||
}
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
private boolean serverNotRunning(IllegalStateException ex) {
|
||||
NestedCheckedException nested = new NestedCheckedException("failed", ex) {
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user