From 7b494cf31928e3d8d90674f4ace2e943f5de6884 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 30 Dec 2016 15:59:17 +0100 Subject: [PATCH] Polish See gh-7793 --- .../boot/autoconfigure/cache/CacheManagerCustomizers.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/CacheManagerCustomizers.java b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/CacheManagerCustomizers.java index fb76047a0d..716a1ebdf6 100644 --- a/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/CacheManagerCustomizers.java +++ b/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/cache/CacheManagerCustomizers.java @@ -70,10 +70,10 @@ class CacheManagerCustomizers implements ApplicationContextAware { customizer.customize(cacheManager); } catch (ClassCastException ex) { - // Possibly a lambda-defined listener which we could not resolve the generic + // Possibly a lambda-defined customizer which we could not resolve the generic // event type for if (logger.isDebugEnabled()) { - logger.debug("Non-matching transaction manager type for customizer: " + logger.debug("Non-matching cache manager type for customizer: " + customizer, ex); } }