| Index: runtime/vm/object_store.h
|
| diff --git a/runtime/vm/object_store.h b/runtime/vm/object_store.h
|
| index 093e47d294b066cc212286a8f1b56cf614882871..d131951801aa80afaf4792e03f2809809ccbb690 100644
|
| --- a/runtime/vm/object_store.h
|
| +++ b/runtime/vm/object_store.h
|
| @@ -27,7 +27,6 @@ class ObjectStore {
|
| kCollectionDev,
|
| kConvert,
|
| kIsolate,
|
| - kJson,
|
| kMath,
|
| kMirrors,
|
| kPlatform,
|
| @@ -278,7 +277,6 @@ class ObjectStore {
|
| }
|
| RawLibrary* convert_library() const { return convert_library_; }
|
| RawLibrary* isolate_library() const { return isolate_library_; }
|
| - RawLibrary* json_library() const { return json_library_; }
|
| RawLibrary* math_library() const { return math_library_; }
|
| RawLibrary* mirrors_library() const { return mirrors_library_; }
|
| RawLibrary* platform_library() const { return platform_library_; }
|
| @@ -304,9 +302,6 @@ class ObjectStore {
|
| case kIsolate:
|
| isolate_library_ = value.raw();
|
| break;
|
| - case kJson:
|
| - json_library_ = value.raw();
|
| - break;
|
| case kMath:
|
| math_library_ = value.raw();
|
| break;
|
| @@ -485,7 +480,6 @@ class ObjectStore {
|
| RawLibrary* collection_dev_library_;
|
| RawLibrary* convert_library_;
|
| RawLibrary* isolate_library_;
|
| - RawLibrary* json_library_;
|
| RawLibrary* math_library_;
|
| RawLibrary* mirrors_library_;
|
| RawLibrary* native_wrappers_library_;
|
|
|