Remove public modifier on JUnit5 lifecycle methods

See gh-17292
This commit is contained in:
Stephane Nicoll
2019-06-21 18:09:05 +02:00
parent c7d3b7a9f1
commit e560b7f6ba
310 changed files with 361 additions and 362 deletions

View File

@@ -68,7 +68,7 @@ public class DevToolsIntegrationTests {
}
@AfterEach
public void stopApplication() throws InterruptedException {
void stopApplication() throws InterruptedException {
this.launchedApplication.stop();
}

View File

@@ -69,7 +69,7 @@ public class DevToolsWithLazyInitializationIntegrationTests {
}
@AfterEach
public void stopApplication() throws InterruptedException {
void stopApplication() throws InterruptedException {
this.launchedApplication.stop();
}