From 6fba1381c18e42d16e37985dfc0f24f019e6aca5 Mon Sep 17 00:00:00 2001 From: Rafael Rollo Date: Thu, 19 Jan 2017 19:32:40 -0200 Subject: [PATCH] Indenting SpringApplication javadoc code Closes gh-8039 --- .../java/org/springframework/boot/SpringApplication.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java b/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java index d38392cdbe..9d58a034b2 100644 --- a/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java +++ b/spring-boot/src/main/java/org/springframework/boot/SpringApplication.java @@ -96,10 +96,11 @@ import org.springframework.web.context.support.StandardServletEnvironment; * @EnableAutoConfiguration * public class MyApplication { * - * // ... Bean definitions + * // ... Bean definitions * - * public static void main(String[] args) throws Exception { - * SpringApplication.run(MyApplication.class, args); + * public static void main(String[] args) throws Exception { + * SpringApplication.run(MyApplication.class, args); + * } * } * *