Browse Source

Polish "Remove unnecessary semicolon"

See gh-24628
pull/25129/head
Stephane Nicoll 5 years ago
parent
commit
f33c7bc27c
  1. 2
      spring-boot-project/spring-boot-cli/src/test/resources/classloader-test-app.groovy
  2. 2
      spring-boot-project/spring-boot-cli/src/test/resources/scripts/command.groovy
  3. 2
      spring-boot-project/spring-boot-cli/test-samples/integration_auto.groovy

2
spring-boot-project/spring-boot-cli/src/test/resources/classloader-test-app.groovy

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

2
spring-boot-project/spring-boot-cli/src/test/resources/scripts/command.groovy

@ -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 {

2
spring-boot-project/spring-boot-cli/test-samples/integration_auto.groovy

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

Loading…
Cancel
Save