Skip to content

Commit 3fa7586

Browse files
izeyesnicoll
authored andcommitted
Remove System.out::println
Closes gh-10848
1 parent c11e514 commit 3fa7586

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/restart/DefaultRestartInitializer.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
import java.util.Collections;
2121
import java.util.LinkedHashSet;
2222
import java.util.Set;
23-
import java.util.stream.Stream;
2423

2524
/**
2625
* Default {@link RestartInitializer} that only enable initial restart when running a
@@ -53,9 +52,7 @@ public URL[] getInitialUrls(Thread thread) {
5352
return null;
5453
}
5554
}
56-
URL[] urls = getUrls(thread);
57-
Stream.of(urls).forEach(System.out::println);
58-
return urls;
55+
return getUrls(thread);
5956
}
6057

6158
/**

0 commit comments

Comments
 (0)