Fix checkstyle RedundantModifier test violations

This commit is contained in:
Phillip Webb
2019-06-07 20:46:33 -07:00
parent cde4f0d688
commit 266d6334b2
41 changed files with 88 additions and 75 deletions

View File

@@ -61,7 +61,7 @@ class EmbeddedServerContainerInvocationContextProvider
private final Path tempDir;
public EmbeddedServerContainerInvocationContextProvider() throws IOException {
EmbeddedServerContainerInvocationContextProvider() throws IOException {
this.tempDir = Files.createTempDirectory("embedded-servlet-container-tests");
}
@@ -99,7 +99,7 @@ class EmbeddedServerContainerInvocationContextProvider
private final AbstractApplicationLauncher launcher;
public EmbeddedServletContainerInvocationContext(String name, AbstractApplicationLauncher launcher) {
EmbeddedServletContainerInvocationContext(String name, AbstractApplicationLauncher launcher) {
this.name = name;
this.launcher = launcher;
}