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 {
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() {
......
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