Chromium Code Reviews| Index: lib/html/src/Serialization.dart |
| diff --git a/lib/html/src/Serialization.dart b/lib/html/src/Serialization.dart |
| index 6bbeef0e0c439ce266e4257bb39b56ee2682ee60..2584441475fe5c3bf6697eaffd117706ff0d491d 100644 |
| --- a/lib/html/src/Serialization.dart |
| +++ b/lib/html/src/Serialization.dart |
| @@ -141,7 +141,7 @@ class _Serializer extends _MessageTraverser { |
| /** Deserializes arrays created with [_Serializer]. */ |
| class _Deserializer { |
| - Map<int, Dynamic> _deserialized; |
| + Map<int, dynamic> _deserialized; |
| _Deserializer(); |
| @@ -151,7 +151,7 @@ class _Deserializer { |
| deserialize(x) { |
| if (isPrimitive(x)) return x; |
| - // TODO(floitsch): this should be new HashMap<int, var|Dynamic>() |
| + // TODO(floitsch): this should be new HashMap<int, var|dynamic>() |
|
kasperl
2012/10/23 12:24:58
Remove var|.
Anton Muhin
2012/10/23 12:32:54
Done.
|
| _deserialized = new HashMap(); |
| return _deserializeHelper(x); |
| } |