Commit 9ccf4739 authored by Phillip Webb's avatar Phillip Webb

Formatting

parent 7b494cf3
...@@ -64,8 +64,7 @@ class CacheManagerCustomizers implements ApplicationContextAware { ...@@ -64,8 +64,7 @@ class CacheManagerCustomizers implements ApplicationContextAware {
} }
@SuppressWarnings({ "unchecked", "rawtypes" }) @SuppressWarnings({ "unchecked", "rawtypes" })
private void customize(CacheManager cacheManager, private void customize(CacheManager cacheManager, CacheManagerCustomizer customizer) {
CacheManagerCustomizer customizer) {
try { try {
customizer.customize(cacheManager); customizer.customize(cacheManager);
} }
...@@ -73,8 +72,9 @@ class CacheManagerCustomizers implements ApplicationContextAware { ...@@ -73,8 +72,9 @@ class CacheManagerCustomizers implements ApplicationContextAware {
// Possibly a lambda-defined customizer which we could not resolve the generic // Possibly a lambda-defined customizer which we could not resolve the generic
// event type for // event type for
if (logger.isDebugEnabled()) { if (logger.isDebugEnabled()) {
logger.debug("Non-matching cache manager type for customizer: " logger.debug(
+ customizer, ex); "Non-matching cache manager type for customizer: " + customizer,
ex);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment