Skip to content

Commit 2cd9a08

Browse files
style: Fix styling
1 parent eabed25 commit 2cd9a08

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ LiveReloadForAdditionalPaths liveReloadForAdditionalPaths(LiveReloadServer liveR
102102
@Bean
103103
@ConditionalOnMissingBean(RestartConfiguration.class)
104104
FileSystemWatcher newFileSystemWatcher(DevToolsProperties properties) {
105-
return new FileSystemWatcher(true, properties.getLivereload().getPollInterval(), properties.getLivereload().getQuietPeriod());
105+
return new FileSystemWatcher(true, properties.getLivereload().getPollInterval(),
106+
properties.getLivereload().getQuietPeriod());
106107
}
107108

108109
@Bean

0 commit comments

Comments
 (0)