Merge branch '2.1.x'

pull/15647/head
Stephane Nicoll 6 years ago
commit 5fdcb219bb

@ -615,7 +615,7 @@ then add a file named `src/main/java/Example.java` to contain the following code
return "Hello World!";
}
public static void main(String[] args) throws Exception {
public static void main(String[] args) {
SpringApplication.run(Example.class, args);
}

@ -3081,7 +3081,7 @@ following example:
return application.sources(Application.class);
}
public static void main(String[] args) throws Exception {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}

Loading…
Cancel
Save