Chromium Code Reviews| Index: runtime/vm/snapshot.cc |
| diff --git a/runtime/vm/snapshot.cc b/runtime/vm/snapshot.cc |
| index d6fae0ce199db76444957800dc75de5c209a633e..d9249db1d39e92b68cd45b38f272bac9b389c73b 100644 |
| --- a/runtime/vm/snapshot.cc |
| +++ b/runtime/vm/snapshot.cc |
| @@ -2162,8 +2162,7 @@ void SnapshotWriter::WriteInstanceRef(RawObject* raw, RawClass* cls) { |
| bool SnapshotWriter::AllowObjectsInDartLibrary(RawLibrary* library) { |
| - return (library == object_store()->collection_library() || |
| - library == object_store()->typed_data_library()); |
| + return library == object_store()->typed_data_library(); |
|
koda
2015/05/29 15:40:21
I'm not sure why this is still needed (by some uni
siva
2015/05/29 15:46:57
I believe it has to do with sending some typed dat
|
| } |