Skip to content

Commit 22a384a

Browse files
committed
Merge branch '1.5.x'
2 parents 9dfaf4d + 1f3de10 commit 22a384a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ private void customize(CacheManager cacheManager, CacheManagerCustomizer customi
7373
customizer.customize(cacheManager);
7474
}
7575
catch (ClassCastException ex) {
76-
// Possibly a lambda-defined listener which we could not resolve the generic
76+
// Possibly a lambda-defined customizer which we could not resolve the generic
7777
// event type for
7878
if (logger.isDebugEnabled()) {
79-
logger.debug("Non-matching transaction manager type for customizer: "
79+
logger.debug("Non-matching cache manager type for customizer: "
8080
+ customizer, ex);
8181
}
8282
}

spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/transaction/TransactionManagerCustomizers.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ private void customize(PlatformTransactionManager transactionManager,
6666
customizer.customize(transactionManager);
6767
}
6868
catch (ClassCastException ex) {
69-
// Possibly a lambda-defined listener which we could not resolve the generic
69+
// Possibly a lambda-defined customizer which we could not resolve the generic
7070
// event type for
7171
if (logger.isDebugEnabled()) {
7272
logger.debug("Non-matching transaction manager type for customizer: "

0 commit comments

Comments
 (0)