Commit f33c7bc2 authored by Stephane Nicoll's avatar Stephane Nicoll

Polish "Remove unnecessary semicolon"

See gh-24628
parent 09710458
...@@ -6,7 +6,7 @@ public class Test implements CommandLineRunner { ...@@ -6,7 +6,7 @@ public class Test implements CommandLineRunner {
public void run(String... args) throws Exception { public void run(String... args) throws Exception {
println "HasClasses-" + ClassUtils.isPresent("missing", null) + "-" + println "HasClasses-" + ClassUtils.isPresent("missing", null) + "-" +
ClassUtils.isPresent("org.springframework.boot.SpringApplication", null) + "-" + ClassUtils.isPresent("org.springframework.boot.SpringApplication", null) + "-" +
ClassUtils.isPresent(args[0], null); ClassUtils.isPresent(args[0], null)
} }
} }
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
package org.test.command package org.test.command
import java.util.Collection; import java.util.Collection
class TestCommand implements Command { class TestCommand implements Command {
......
...@@ -5,7 +5,7 @@ package com.example ...@@ -5,7 +5,7 @@ package com.example
class RestTests { class RestTests {
@Autowired @Autowired
TestRestTemplate testRestTemplate; TestRestTemplate testRestTemplate
@Test @Test
void testHome() { void testHome() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment