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

Side by Side Diff: lib/core/hashable.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, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // Dart core library. 5 // Dart core library.
6 6
7 /**
8 * Temporary interface for backwards compatibility.
9 *
10 * All objects now have a [hashCode] method. This interface will be removed
11 * after a grace period. Code that use the [:Hashable:] interface should just
Mads Ager (google) 2012/09/27 12:48:27 that uses should just -> should I assume you are
Lasse Reichstein Nielsen 2012/09/27 13:59:36 Absolutely.
12 * remove it, or use [:Object:] instead if a type is necessary.
13 */
7 abstract class Hashable { 14 abstract class Hashable {
8 abstract int hashCode(); 15 abstract int hashCode();
9 } 16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698