Remove throws InterruptedException from sample main

This commit is contained in:
Ilayaperumal Gopinathan
2015-08-17 15:21:46 -07:00
parent f39b190492
commit 3dac86a18a
7 changed files with 8 additions and 8 deletions

View File

@@ -23,7 +23,7 @@ public class ExtendedApplication implements AggregateConfigurer {
// @formatter:on
}
public static void main(String[] args) throws InterruptedException {
public static void main(String[] args) {
SpringApplication.run(ExtendedApplication.class, args);
}