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

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

Issue 232633002: Update status (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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 | « no previous file | tests/corelib/corelib.status » ('j') | 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 0b3ef78d11490ee4c75ac2010b34d7b4d3508037..463fab9c4cb24ca2a7f4e62af549ed2dc1c6134d 100644
--- a/sdk/lib/_internal/lib/collection_patch.dart
+++ b/sdk/lib/_internal/lib/collection_patch.dart
@@ -612,7 +612,7 @@ class _LinkedHashMap<K, V> implements LinkedHashMap<K, V> {
}
}
- V _get(K key) {
+ V _get(Object key) {
var rest = _rest;
if (rest == null) return null;
var bucket = _getBucket(rest, key);
@@ -1110,7 +1110,7 @@ class _HashSet<E> extends _HashSetBase<E> implements HashSet<E> {
}
}
- bool _remove(object) {
+ bool _remove(Object object) {
var rest = _rest;
if (rest == null) return false;
var bucket = _getBucket(rest, object);
« no previous file with comments | « no previous file | tests/corelib/corelib.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698