Merge branch '2.3.x' into 2.4.x

Closes gh-24643
This commit is contained in:
Stephane Nicoll
2021-01-05 08:28:13 +01:00
8 changed files with 12 additions and 12 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 {