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

Unified Diff: pkg/serialization/lib/src/reader_writer.dart

Issue 11567018: Get rid of the polyfill identity set implementation in favour of a (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: A bit more polyfill that can be removed with this change. Created 8 years 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: pkg/serialization/lib/src/reader_writer.dart
diff --git a/pkg/serialization/lib/src/reader_writer.dart b/pkg/serialization/lib/src/reader_writer.dart
index 4415e63380b7869f984808fcc410d076044524f3..12d08c20c37edb3afee6d133a84fe804d49cfa73 100644
--- a/pkg/serialization/lib/src/reader_writer.dart
+++ b/pkg/serialization/lib/src/reader_writer.dart
@@ -38,7 +38,7 @@ class Writer {
* but also serves to record which objects we have already seen.
*/
final Map<Object, Reference> references =
- new IdentityMapPlus<Object, Reference>();
+ new IdentityMap<Object, Reference>();
/**
* The state of objects that need to be serialized is stored here.

Powered by Google App Engine
This is Rietveld 408576698