diff --git a/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/AbstractFallbackJCacheOperationSource.java b/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/AbstractFallbackJCacheOperationSource.java
index b6e2c0c7c1..c19e3a1e94 100644
--- a/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/AbstractFallbackJCacheOperationSource.java
+++ b/spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/AbstractFallbackJCacheOperationSource.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2014 the original author or authors.
+ * Copyright 2002-2015 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -29,19 +29,18 @@ import org.springframework.core.BridgeMethodResolver;
import org.springframework.util.ClassUtils;
/**
- * Abstract implementation of {@link JCacheOperationSource} that caches
- * attributes for methods and implements a fallback policy: 1. specific
- * target method; 2. declaring method.
+ * Abstract implementation of {@link JCacheOperationSource} that caches attributes
+ * for methods and implements a fallback policy: 1. specific target method;
+ * 2. declaring method.
*
- *
This implementation caches attributes by method after they are
- * first used.
+ *
This implementation caches attributes by method after they are first used.
*
* @author Stephane Nicoll
+ * @author Juergen Hoeller
* @since 4.1
* @see org.springframework.cache.interceptor.AbstractFallbackCacheOperationSource
*/
-public abstract class AbstractFallbackJCacheOperationSource
- implements JCacheOperationSource {
+public abstract class AbstractFallbackJCacheOperationSource implements JCacheOperationSource {
/**
* Canonical value held in cache to indicate no caching attribute was
@@ -49,34 +48,31 @@ public abstract class AbstractFallbackJCacheOperationSource
*/
private final static Object NULL_CACHING_ATTRIBUTE = new Object();
+
protected final Log logger = LogFactory.getLog(getClass());
- private final Map