aboutsummaryrefslogtreecommitdiffstats
path: root/guava/src/com/google/common/cache/AbstractLoadingCache.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/cache/AbstractLoadingCache.java')
-rw-r--r--guava/src/com/google/common/cache/AbstractLoadingCache.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/guava/src/com/google/common/cache/AbstractLoadingCache.java b/guava/src/com/google/common/cache/AbstractLoadingCache.java
index 6a12c40..22ef81b 100644
--- a/guava/src/com/google/common/cache/AbstractLoadingCache.java
+++ b/guava/src/com/google/common/cache/AbstractLoadingCache.java
@@ -30,11 +30,10 @@ import java.util.concurrent.ExecutionException;
* effort required to implement this interface.
*
* <p>To implement a cache, the programmer needs only to extend this class and provide an
- * implementation for the {@link #get(Object)} and {@link #getIfPresent} methods.
- * {@link #getUnchecked}, {@link #get(Object, Callable)}, and {@link #getAll} are implemented in
- * terms of {@code get}; {@link #getAllPresent} is implemented in terms of {@code getIfPresent};
- * {@link #putAll} is implemented in terms of {@link #put}, {@link #invalidateAll(Iterable)} is
- * implemented in terms of {@link #invalidate}. The method {@link #cleanUp} is a no-op. All other
+ * implementation for the {@link #get} and {@link #getIfPresent} methods. {@link #getUnchecked},
+ * {@link #get(K, Callable)}, and {@link #getAll} are implemented in terms of {@code get};
+ * {@link #getAllPresent} is implemented in terms of {@code get}; {@link #invalidateAll(Iterable)}
+ * is implemented in terms of {@link #invalidate}. The method {@link #cleanUp} is a no-op. All other
* methods throw an {@link UnsupportedOperationException}.
*
* @author Charles Fry