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

Unified Diff: sdk/lib/_internal/lib/collection_patch.dart

Issue 23902051: Remove override of runtimeType from HashMap implementations. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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
« no previous file with comments | « runtime/lib/collection_patch.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/lib/collection_patch.dart
diff --git a/sdk/lib/_internal/lib/collection_patch.dart b/sdk/lib/_internal/lib/collection_patch.dart
index 7066b05bc91282dc9063673e81f03b17be747fd4..7d77eee4f021b0fe783faac759c96675ec144b3c 100644
--- a/sdk/lib/_internal/lib/collection_patch.dart
+++ b/sdk/lib/_internal/lib/collection_patch.dart
@@ -56,7 +56,6 @@ class _HashMap<K, V> implements HashMap<K, V> {
_HashMap();
- Type get runtimeType => HashMap;
int get length => _length;
bool get isEmpty => _length == 0;
@@ -500,7 +499,6 @@ class _LinkedHashMap<K, V> implements LinkedHashMap<K, V> {
_LinkedHash();
- Type get runtimeType => LinkedHashMap;
int get length => _length;
bool get isEmpty => _length == 0;
« no previous file with comments | « runtime/lib/collection_patch.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698