diff --git a/spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCache.java b/spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCache.java index fb341119d9..605adf4886 100644 --- a/spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCache.java +++ b/spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCache.java @@ -28,7 +28,7 @@ import org.springframework.util.Assert; /** * {@link org.springframework.cache.Cache} implementation on top of a - * {@link javax.cache.Cache} instance. + * {@link Cache javax.cache.Cache} instance. * *

Note: This class has been updated for JCache 1.0, as of Spring 4.0. * @@ -42,7 +42,7 @@ public class JCacheCache extends AbstractValueAdaptingCache { /** - * Create an {@link org.springframework.cache.jcache.JCacheCache} instance. + * Create a {@link org.springframework.cache.jcache.JCacheCache} instance. * @param jcache backing JCache Cache instance */ public JCacheCache(Cache jcache) { @@ -50,7 +50,7 @@ public class JCacheCache extends AbstractValueAdaptingCache { } /** - * Create an {@link org.springframework.cache.jcache.JCacheCache} instance. + * Create a {@link org.springframework.cache.jcache.JCacheCache} instance. * @param jcache backing JCache Cache instance * @param allowNullValues whether to accept and convert null values for this cache */ @@ -128,7 +128,7 @@ public class JCacheCache extends AbstractValueAdaptingCache { } catch (Exception ex) { throw new EntryProcessorException("Value loader '" + valueLoader + "' failed " + - "to compute value for key '" + entry.getKey() + "'", ex); + "to compute value for key '" + entry.getKey() + "'", ex); } entry.setValue(toStoreValue(value)); return value; diff --git a/spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCacheManager.java b/spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCacheManager.java index 69c094ebce..ab5b3d7395 100644 --- a/spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCacheManager.java +++ b/spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCacheManager.java @@ -28,7 +28,7 @@ import org.springframework.util.Assert; /** * {@link org.springframework.cache.CacheManager} implementation - * backed by a JCache {@link javax.cache.CacheManager}. + * backed by a JCache {@link CacheManager javax.cache.CacheManager}. * *

Note: This class has been updated for JCache 1.0, as of Spring 4.0. * @@ -53,7 +53,7 @@ public class JCacheCacheManager extends AbstractTransactionSupportingCacheManage /** * Create a new JCacheCacheManager for the given backing JCache. - * @param cacheManager the backing JCache {@link javax.cache.CacheManager} + * @param cacheManager the backing JCache {@link CacheManager javax.cache.CacheManager} */ public JCacheCacheManager(CacheManager cacheManager) { this.cacheManager = cacheManager; @@ -61,14 +61,14 @@ public class JCacheCacheManager extends AbstractTransactionSupportingCacheManage /** - * Set the backing JCache {@link javax.cache.CacheManager}. + * Set the backing JCache {@link CacheManager javax.cache.CacheManager}. */ public void setCacheManager(@Nullable CacheManager cacheManager) { this.cacheManager = cacheManager; } /** - * Return the backing JCache {@link javax.cache.CacheManager}. + * Return the backing JCache {@link CacheManager javax.cache.CacheManager}. */ @Nullable public CacheManager getCacheManager() {