Merge branch '1.5.x'

This commit is contained in:
Stephane Nicoll 2016-12-30 16:11:13 +01:00
commit 22a384ac28
2 changed files with 3 additions and 3 deletions

View File

@ -73,10 +73,10 @@ public class CacheManagerCustomizers {
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);
}
}

View File

@ -66,7 +66,7 @@ public class TransactionManagerCustomizers {
customizer.customize(transactionManager);
}
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: "