Remove System.out.println in DevToolsPropertyDefaultsPostProcessor

See gh-24325
This commit is contained in:
dreis2211 2020-12-03 18:54:05 +01:00 committed by Madhura Bhave
parent 6c6e339dbb
commit faec47d332

View File

@ -104,7 +104,6 @@ public class DevToolsPropertyDefaultsPostProcessor implements EnvironmentPostPro
String prefix = determineResourcePropertiesPrefix(environment);
resourceProperties.put(prefix + "cache.period", "0");
resourceProperties.put(prefix + "chain.cache", "false");
System.out.println(resourceProperties);
return resourceProperties;
}