Remove redundant semicolons

Closes gh-10422
This commit is contained in:
dreis2211
2017-09-25 23:46:30 +02:00
committed by Stephane Nicoll
parent bbee943972
commit f3472beed8
24 changed files with 26 additions and 26 deletions

View File

@@ -299,7 +299,7 @@ public final class TestPropertyValues {
@Override
public void close() {
this.previous.forEach(this::setOrClear);
};
}
private String setOrClear(String name, String value) {
Assert.notNull(name, "Name must not be null");

View File

@@ -80,7 +80,7 @@ public class SpringBootMockServletContextTests implements ServletContextAware {
protected String getResourceLocation(String path) {
// Don't include the Spring Boot defaults for this test
return getResourceBasePathLocation(path);
};
}
};
URL resource = context.getResource("/");
assertThat(resource).isNotEqualTo(nullValue());