aboutsummaryrefslogtreecommitdiffstats
path: root/guava/src/com/google/common/collect/SetMultimap.java
diff options
context:
space:
mode:
Diffstat (limited to 'guava/src/com/google/common/collect/SetMultimap.java')
-rw-r--r--guava/src/com/google/common/collect/SetMultimap.java11
1 files changed, 1 insertions, 10 deletions
diff --git a/guava/src/com/google/common/collect/SetMultimap.java b/guava/src/com/google/common/collect/SetMultimap.java
index 18f4a18..1409d8d 100644
--- a/guava/src/com/google/common/collect/SetMultimap.java
+++ b/guava/src/com/google/common/collect/SetMultimap.java
@@ -26,22 +26,13 @@ import javax.annotation.Nullable;
/**
* A {@code Multimap} that cannot hold duplicate key-value pairs. Adding a
- * key-value pair that's already in the multimap has no effect. See the {@link
- * Multimap} documentation for information common to all multimaps.
+ * key-value pair that's already in the multimap has no effect.
*
* <p>The {@link #get}, {@link #removeAll}, and {@link #replaceValues} methods
* each return a {@link Set} of values, while {@link #entries} returns a {@code
* Set} of map entries. Though the method signature doesn't say so explicitly,
* the map returned by {@link #asMap} has {@code Set} values.
*
- * <p>If the values corresponding to a single key should be ordered according to
- * a {@link java.util.Comparator} (or the natural order), see the
- * {@link SortedSetMultimap} subinterface.
- *
- * <p>See the Guava User Guide article on <a href=
- * "http://code.google.com/p/guava-libraries/wiki/NewCollectionTypesExplained#Multimap">
- * {@code Multimap}</a>.
- *
* @author Jared Levy
* @since 2.0 (imported from Google Collections Library)
*/