Skip to content
This repository was archived by the owner on Jul 4, 2023. It is now read-only.

Commit 6603fcd

Browse files
committed
Remove references to on-demand computation of values.
Guava issue google#1885 ------------- Created by MOE: http://code.google.com/p/moe-java MOE_MIGRATED_REVID=79582498
1 parent f78ba14 commit 6603fcd

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

guava/src/com/google/common/collect/MapMaker.java

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
* <li>keys or values automatically wrapped in {@linkplain WeakReference weak} or {@linkplain
5252
* SoftReference soft} references
5353
* <li>notification of evicted (or otherwise removed) entries
54-
* <li>on-demand computation of values for keys not already present
5554
* </ul>
5655
*
5756
* <p>Usage example: <pre> {@code
@@ -490,9 +489,8 @@ <K, V> GenericMapMaker<K, V> removalListener(RemovalListener<K, V> listener) {
490489
}
491490

492491
/**
493-
* Builds a thread-safe map, without on-demand computation of values. This method does not alter
494-
* the state of this {@code MapMaker} instance, so it can be invoked again to create multiple
495-
* independent maps.
492+
* Builds a thread-safe map. This method does not alter the state of this {@code MapMaker}
493+
* instance, so it can be invoked again to create multiple independent maps.
496494
*
497495
* <p>The bulk operations {@code putAll}, {@code equals}, and {@code clear} are not guaranteed to
498496
* be performed atomically on the returned map. Additionally, {@code size} and {@code

0 commit comments

Comments
 (0)