Skip to content

Commit f33c7bc

Browse files
committed
Polish "Remove unnecessary semicolon"
See gh-24628
1 parent 0971045 commit f33c7bc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public class Test implements CommandLineRunner {
66
public void run(String... args) throws Exception {
77
println "HasClasses-" + ClassUtils.isPresent("missing", null) + "-" +
88
ClassUtils.isPresent("org.springframework.boot.SpringApplication", null) + "-" +
9-
ClassUtils.isPresent(args[0], null);
9+
ClassUtils.isPresent(args[0], null)
1010
}
1111

1212
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
package org.test.command
1818

19-
import java.util.Collection;
19+
import java.util.Collection
2020

2121
class TestCommand implements Command {
2222

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package com.example
55
class RestTests {
66

77
@Autowired
8-
TestRestTemplate testRestTemplate;
8+
TestRestTemplate testRestTemplate
99

1010
@Test
1111
void testHome() {

0 commit comments

Comments
 (0)