Remove an unused interface in RestarterTests

See gh-15666
This commit is contained in:
Johnny Lim 2019-01-10 14:27:16 +09:00 committed by Stephane Nicoll
parent badccc083e
commit d7f0c1d63c

View File

@ -176,13 +176,6 @@ public class RestarterTests {
assertThat(Restarter.getInstance().getInitialUrls()).isEqualTo(urls);
}
@FunctionalInterface
private interface WithMainAction {
void perform() throws Exception;
}
@Component
@EnableScheduling
public static class SampleApplication {