aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConley Owens <cco3@android.com>2012-09-06 10:20:50 -0700
committerandroid code review <noreply-gerritcodereview@google.com>2012-09-06 10:20:51 -0700
commit515370823799decea74751ff3a78b80e44e71219 (patch)
tree4f5eced91e57d4f884dbe3579f30cb0283de72de
parent82ecaa2d738f24551282d93a51ce081a802c6b6e (diff)
parentfc8e523dd85a6724cce374877a23f068d98bc1b6 (diff)
downloadguava-jb-mr1-dev.tar.gz
-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;