aboutsummaryrefslogtreecommitdiffstats
path: root/guava/src/com/google/common/cache/CacheStats.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/cache/CacheStats.java')
-rw-r--r--guava/src/com/google/common/cache/CacheStats.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/guava/src/com/google/common/cache/CacheStats.java b/guava/src/com/google/common/cache/CacheStats.java
index d8c9eb7..04d442c 100644
--- a/guava/src/com/google/common/cache/CacheStats.java
+++ b/guava/src/com/google/common/cache/CacheStats.java
@@ -22,8 +22,6 @@ import com.google.common.annotations.Beta;
import com.google.common.annotations.GwtCompatible;
import com.google.common.base.Objects;
-import java.util.concurrent.Callable;
-
import javax.annotation.Nullable;
/**
@@ -46,14 +44,9 @@ import javax.annotation.Nullable;
* </ul>
* <li>When an entry is evicted from the cache, {@code evictionCount} is incremented.
* <li>No stats are modified when a cache entry is invalidated or manually removed.
- * <li>No stats are modified on a query to {@link Cache#getIfPresent}.
* <li>No stats are modified by operations invoked on the {@linkplain Cache#asMap asMap} view of
* the cache.
* </ul>
- *
- * <p>A lookup is specifically defined as an invocation of one of the methods
- * {@link LoadingCache#get(Object)}, {@link LoadingCache#getUnchecked(Object)},
- * {@link Cache#get(Object, Callable)}, or {@link LoadingCache#getAll(Iterable)}.
*
* @author Charles Fry
* @since 10.0