Skip to content

Commit 4533f29

Browse files
style: Fix lambda block as per checkstyle
1 parent 3365daf commit 4533f29

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

spring-boot-project/spring-boot-devtools/src/main/java/org/springframework/boot/devtools/autoconfigure/LocalDevToolsAutoConfiguration.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,7 @@ public void destroy() throws Exception {
250250
this.fileSystemWatcher.addSourceDirectory(path.getAbsoluteFile());
251251
}
252252

253-
this.fileSystemWatcher.addListener((__) -> {
254-
liveReloadServer.triggerReload();
255-
});
253+
this.fileSystemWatcher.addListener((__) -> liveReloadServer.triggerReload());
256254

257255
this.fileSystemWatcher.start();
258256
}

0 commit comments

Comments
 (0)