Skip to content

Commit 4db5d28

Browse files
izeyesnicoll
authored andcommitted
Polish
Closes gh-1938
1 parent f13f041 commit 4db5d28

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCache.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
/**
3030
* {@link org.springframework.cache.Cache} implementation on top of a
31-
* {@link javax.cache.Cache} instance.
31+
* {@link Cache javax.cache.Cache} instance.
3232
*
3333
* <p>Note: This class has been updated for JCache 1.0, as of Spring 4.0.
3434
*
@@ -42,15 +42,15 @@ public class JCacheCache extends AbstractValueAdaptingCache {
4242

4343

4444
/**
45-
* Create an {@link org.springframework.cache.jcache.JCacheCache} instance.
45+
* Create a {@link org.springframework.cache.jcache.JCacheCache} instance.
4646
* @param jcache backing JCache Cache instance
4747
*/
4848
public JCacheCache(Cache<Object, Object> jcache) {
4949
this(jcache, true);
5050
}
5151

5252
/**
53-
* Create an {@link org.springframework.cache.jcache.JCacheCache} instance.
53+
* Create a {@link org.springframework.cache.jcache.JCacheCache} instance.
5454
* @param jcache backing JCache Cache instance
5555
* @param allowNullValues whether to accept and convert null values for this cache
5656
*/
@@ -128,7 +128,7 @@ public T process(MutableEntry<Object, Object> entry, Object... arguments) throws
128128
}
129129
catch (Exception ex) {
130130
throw new EntryProcessorException("Value loader '" + valueLoader + "' failed " +
131-
"to compute value for key '" + entry.getKey() + "'", ex);
131+
"to compute value for key '" + entry.getKey() + "'", ex);
132132
}
133133
entry.setValue(toStoreValue(value));
134134
return value;

spring-context-support/src/main/java/org/springframework/cache/jcache/JCacheCacheManager.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
/**
3030
* {@link org.springframework.cache.CacheManager} implementation
31-
* backed by a JCache {@link javax.cache.CacheManager}.
31+
* backed by a JCache {@link CacheManager javax.cache.CacheManager}.
3232
*
3333
* <p>Note: This class has been updated for JCache 1.0, as of Spring 4.0.
3434
*
@@ -53,22 +53,22 @@ public JCacheCacheManager() {
5353

5454
/**
5555
* Create a new JCacheCacheManager for the given backing JCache.
56-
* @param cacheManager the backing JCache {@link javax.cache.CacheManager}
56+
* @param cacheManager the backing JCache {@link CacheManager javax.cache.CacheManager}
5757
*/
5858
public JCacheCacheManager(CacheManager cacheManager) {
5959
this.cacheManager = cacheManager;
6060
}
6161

6262

6363
/**
64-
* Set the backing JCache {@link javax.cache.CacheManager}.
64+
* Set the backing JCache {@link CacheManager javax.cache.CacheManager}.
6565
*/
6666
public void setCacheManager(@Nullable CacheManager cacheManager) {
6767
this.cacheManager = cacheManager;
6868
}
6969

7070
/**
71-
* Return the backing JCache {@link javax.cache.CacheManager}.
71+
* Return the backing JCache {@link CacheManager javax.cache.CacheManager}.
7272
*/
7373
@Nullable
7474
public CacheManager getCacheManager() {

0 commit comments

Comments
 (0)