Skip to content

Commit 9ccf473

Browse files
committed
Formatting
1 parent 7b494cf commit 9ccf473

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/CacheManagerCustomizers.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,17 +64,17 @@ public <T extends CacheManager> T customize(T cacheManager) {
6464
}
6565

6666
@SuppressWarnings({ "unchecked", "rawtypes" })
67-
private void customize(CacheManager cacheManager,
68-
CacheManagerCustomizer customizer) {
67+
private void customize(CacheManager cacheManager, CacheManagerCustomizer customizer) {
6968
try {
7069
customizer.customize(cacheManager);
7170
}
7271
catch (ClassCastException ex) {
7372
// Possibly a lambda-defined customizer which we could not resolve the generic
7473
// event type for
7574
if (logger.isDebugEnabled()) {
76-
logger.debug("Non-matching cache manager type for customizer: "
77-
+ customizer, ex);
75+
logger.debug(
76+
"Non-matching cache manager type for customizer: " + customizer,
77+
ex);
7878
}
7979
}
8080
}

0 commit comments

Comments
 (0)