Browse Source

Polish formatting

pull/2707/head
Phillip Webb 11 years ago
parent
commit
ffe5348083
  1. 4
      spring-boot/src/main/java/org/springframework/boot/logging/LoggingApplicationListener.java

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

@ -168,13 +168,13 @@ public class LoggingApplicationListener implements SmartApplicationListener { @@ -168,13 +168,13 @@ public class LoggingApplicationListener implements SmartApplicationListener {
// Logback won't read backslashes so add a clean path for it to use
if (!StringUtils.hasLength(System.getProperty("LOG_TEMP"))) {
String path = System.getProperty("java.io.tmpdir");
if (path!=null) {
if (path != null) {
path = StringUtils.cleanPath(path);
if (path.endsWith("/")) {
path = path.substring(0, path.length() - 1);
}
System.setProperty("LOG_TEMP", path);
}
}
}
}

Loading…
Cancel
Save