Polish "Remove unnecessary semicolon"

See gh-24628
This commit is contained in:
Stephane Nicoll
2021-01-05 08:24:03 +01:00
parent 097104584c
commit f33c7bc27c
3 changed files with 3 additions and 3 deletions

View File

@@ -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)
}
}

View File

@@ -16,7 +16,7 @@
package org.test.command
import java.util.Collection;
import java.util.Collection
class TestCommand implements Command {

View File

@@ -5,7 +5,7 @@ package com.example
class RestTests {
@Autowired
TestRestTemplate testRestTemplate;
TestRestTemplate testRestTemplate
@Test
void testHome() {