| commit | d0b77d1134ed70f93c8aee2e13f15446fd4e7ebf | [log] [tgz] |
|---|---|---|
| author | scottb@google.com <scottb@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Wed Apr 23 04:55:24 2008 +0000 |
| committer | scottb@google.com <scottb@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Wed Apr 23 04:55:24 2008 +0000 |
| tree | 23712bab382c89e83dbefb34aad1a72ba5d26b90 | |
| parent | 4bc66dccbf57753654825850f464dbaae9f4f623 [diff] |
Type bounds compatibility fix. Suggested by: amitmanjhi git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2529 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/super/com/google/gwt/emul/java/util/TreeMap.java b/user/super/com/google/gwt/emul/java/util/TreeMap.java index a226ff1..645fd15 100644 --- a/user/super/com/google/gwt/emul/java/util/TreeMap.java +++ b/user/super/com/google/gwt/emul/java/util/TreeMap.java
@@ -24,8 +24,7 @@ * @param <K> key type * @param <V> value type */ -public class TreeMap<K extends Comparable<K>, V> extends AbstractMap<K, V> - implements SortedMap<K, V> { +public class TreeMap<K, V> extends AbstractMap<K, V> implements SortedMap<K, V> { /* * Implementation derived from public domain C implementation as of 5 * September 2007 at: