Polish "Remove unnecessary semicolon"
See gh-24628
This commit is contained in:
@@ -6,7 +6,7 @@ public class Test implements CommandLineRunner {
|
||||
public void run(String... args) throws Exception {
|
||||
println "HasClasses-" + ClassUtils.isPresent("missing", null) + "-" +
|
||||
ClassUtils.isPresent("org.springframework.boot.SpringApplication", null) + "-" +
|
||||
ClassUtils.isPresent(args[0], null);
|
||||
ClassUtils.isPresent(args[0], null)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
|
||||
package org.test.command
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.Collection
|
||||
|
||||
class TestCommand implements Command {
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@ package com.example
|
||||
class RestTests {
|
||||
|
||||
@Autowired
|
||||
TestRestTemplate testRestTemplate;
|
||||
TestRestTemplate testRestTemplate
|
||||
|
||||
@Test
|
||||
void testHome() {
|
||||
|
||||
Reference in New Issue
Block a user