Polish code format

This commit is contained in:
Stephane Nicoll
2018-12-10 15:02:22 +01:00
parent d6ce909892
commit fc7cc42d62
27 changed files with 33 additions and 0 deletions

View File

@@ -9,4 +9,6 @@ class {{applicationName}} {
static void main(String[] args) {
SpringApplication.run {{applicationName}}, args
}
}

View File

@@ -9,4 +9,6 @@ public class {{applicationName}} {
public static void main(String[] args) {
SpringApplication.run({{applicationName}}.class, args);
}
}

View File

@@ -19,3 +19,4 @@ fun main(args: Array<String>) {
runApplication<{{applicationName}}>(*args)
{{/kotlinSupport}}
}

View File

@@ -12,3 +12,4 @@ import org.junit.runner.RunWith
}
}

View File

@@ -12,3 +12,4 @@ import org.junit.runner.RunWith;
}
}

View File

@@ -12,3 +12,4 @@ import org.junit.runner.RunWith
}
}

View File

@@ -11,3 +11,4 @@ class ServletInitializer extends SpringBootServletInitializer {
}
}

View File

@@ -11,3 +11,4 @@ public class ServletInitializer extends SpringBootServletInitializer {
}
}

View File

@@ -10,3 +10,4 @@ class ServletInitializer : SpringBootServletInitializer() {
}
}

View File

@@ -9,4 +9,6 @@ class DemoApplication {
static void main(String[] args) {
SpringApplication.run DemoApplication, args
}
}

View File

@@ -11,3 +11,4 @@ class ServletInitializer extends SpringBootServletInitializer {
}
}

View File

@@ -9,4 +9,6 @@ class DemoApplication {
static void main(String[] args) {
SpringApplication.run DemoApplication, args
}
}

View File

@@ -14,3 +14,4 @@ class DemoApplicationTests {
}
}

View File

@@ -14,3 +14,4 @@ class DemoApplicationTests {
}
}

View File

@@ -11,3 +11,4 @@ class ServletInitializer extends SpringBootServletInitializer {
}
}

View File

@@ -9,4 +9,6 @@ public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}

View File

@@ -11,3 +11,4 @@ public class ServletInitializer extends SpringBootServletInitializer {
}
}

View File

@@ -9,4 +9,6 @@ public class DemoApplication {
public static void main(String[] args) {
SpringApplication.run(DemoApplication.class, args);
}
}

View File

@@ -14,3 +14,4 @@ public class DemoApplicationTests {
}
}

View File

@@ -14,3 +14,4 @@ public class DemoApplicationTests {
}
}

View File

@@ -11,3 +11,4 @@ public class ServletInitializer extends SpringBootServletInitializer {
}
}

View File

@@ -9,3 +9,4 @@ class DemoApplication
fun main(args: Array<String>) {
SpringApplication.run(DemoApplication::class.java, *args)
}

View File

@@ -10,3 +10,4 @@ class ServletInitializer : SpringBootServletInitializer() {
}
}

View File

@@ -9,3 +9,4 @@ class DemoApplication
fun main(args: Array<String>) {
runApplication<DemoApplication>(*args)
}

View File

@@ -14,3 +14,4 @@ class DemoApplicationTests {
}
}

View File

@@ -14,3 +14,4 @@ class DemoApplicationTests {
}
}

View File

@@ -10,3 +10,4 @@ class ServletInitializer : SpringBootServletInitializer() {
}
}