Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
f33c7bc2
Commit
f33c7bc2
authored
Jan 05, 2021
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish "Remove unnecessary semicolon"
See gh-24628
parent
09710458
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
classloader-test-app.groovy
...g-boot-cli/src/test/resources/classloader-test-app.groovy
+1
-1
command.groovy
...spring-boot-cli/src/test/resources/scripts/command.groovy
+1
-1
integration_auto.groovy
...ject/spring-boot-cli/test-samples/integration_auto.groovy
+1
-1
No files found.
spring-boot-project/spring-boot-cli/src/test/resources/classloader-test-app.groovy
View file @
f33c7bc2
...
@@ -6,7 +6,7 @@ public class Test implements CommandLineRunner {
...
@@ -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
)
}
}
}
}
...
...
spring-boot-project/spring-boot-cli/src/test/resources/scripts/command.groovy
View file @
f33c7bc2
...
@@ -16,7 +16,7 @@
...
@@ -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
{
...
...
spring-boot-project/spring-boot-cli/test-samples/integration_auto.groovy
View file @
f33c7bc2
...
@@ -5,7 +5,7 @@ package com.example
...
@@ -5,7 +5,7 @@ package com.example
class
RestTests
{
class
RestTests
{
@Autowired
@Autowired
TestRestTemplate
testRestTemplate
;
TestRestTemplate
testRestTemplate
@Test
@Test
void
testHome
()
{
void
testHome
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment