Skip to content

Commit ffe5348

Browse files
committed
Polish formatting
1 parent 6459926 commit ffe5348

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spring-boot/src/main/java/org/springframework/boot/logging/LoggingApplicationListener.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,13 +168,13 @@ private void cleanLogTempProperty() {
168168
// Logback won't read backslashes so add a clean path for it to use
169169
if (!StringUtils.hasLength(System.getProperty("LOG_TEMP"))) {
170170
String path = System.getProperty("java.io.tmpdir");
171-
if (path!=null) {
171+
if (path != null) {
172172
path = StringUtils.cleanPath(path);
173173
if (path.endsWith("/")) {
174174
path = path.substring(0, path.length() - 1);
175175
}
176176
System.setProperty("LOG_TEMP", path);
177-
}
177+
}
178178
}
179179
}
180180

0 commit comments

Comments
 (0)