aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--guava/src/com/google/common/collect/Maps.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/guava/src/com/google/common/collect/Maps.java b/guava/src/com/google/common/collect/Maps.java
index 703c4471b..42158699e 100644
--- a/guava/src/com/google/common/collect/Maps.java
+++ b/guava/src/com/google/common/collect/Maps.java
@@ -227,7 +227,7 @@ public final class Maps {
*/
public static <K, V> TreeMap<K, V> newTreeMap(
@Nullable Comparator<? super K> comparator) {
- // Ideally, the extra type parameter "C" shouldn't be necessary. It is a
+ // Ideally, the "? super" shouldn't be necessary. It is a
// work-around of a compiler type inference quirk that prevents the
// following code from being compiled:
// Comparator<Class<?>> comparator = null;