Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(833)

Unified Diff: lib/core/set.dart

Issue 10993059: Stop using the Hashable interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: lib/core/set.dart
diff --git a/lib/core/set.dart b/lib/core/set.dart
index 1652f4e23b7c754b95b0c490948a70f97e863212..1c2b690471ef188ab8321f4a0938baf98c517ab9 100644
--- a/lib/core/set.dart
+++ b/lib/core/set.dart
@@ -69,7 +69,7 @@ abstract class Set<E> extends Collection<E> {
}
-abstract class HashSet<E extends Hashable> extends Set<E> {
+abstract class HashSet<E> extends Set<E> {
factory HashSet() => new HashSetImplementation<E>();
/**

Powered by Google App Engine
This is Rietveld 408576698