Skip to content

Commit 20efb58

Browse files
committed
Fix Format
Signed-off-by: Doğaç Eldenk <[email protected]>
1 parent 4b3550e commit 20efb58

File tree

1 file changed

+5
-5
lines changed
  • spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty

1 file changed

+5
-5
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/web/embedded/jetty/JettyWebServer.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -211,11 +211,11 @@ private String getContextPath() {
211211
return null;
212212
}
213213
return this.server.getHandlers()
214-
.stream()
215-
.map(this::findContextHandler)
216-
.filter(Objects::nonNull)
217-
.map(ContextHandler::getContextPath)
218-
.collect(Collectors.joining(" "));
214+
.stream()
215+
.map(this::findContextHandler)
216+
.filter(Objects::nonNull)
217+
.map(ContextHandler::getContextPath)
218+
.collect(Collectors.joining(" "));
219219
}
220220

221221
private ContextHandler findContextHandler(Handler handler) {

0 commit comments

Comments
 (0)