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

Unified Diff: tests/corelib/set_iterator_test.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: tests/corelib/set_iterator_test.dart
diff --git a/tests/corelib/set_iterator_test.dart b/tests/corelib/set_iterator_test.dart
index 51ad493784e7eae4f2c4dfb35343b567df94125f..1d9881b0a98e2d5a7a73a5fb4cd0bb2936d96e17 100644
--- a/tests/corelib/set_iterator_test.dart
+++ b/tests/corelib/set_iterator_test.dart
@@ -2,7 +2,7 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-class FixedHashCode implements Hashable {
+class FixedHashCode {
Mads Ager (google) 2012/09/27 12:48:27 hep
final int _hashCode;
const FixedHashCode(this._hashCode);
int hashCode() { return _hashCode; }

Powered by Google App Engine
This is Rietveld 408576698