| Index: runtime/vm/allocation.h
|
| diff --git a/runtime/vm/allocation.h b/runtime/vm/allocation.h
|
| index 468c1adae90d43325f221f796015ed7c613a6b46..af9a74a6813dfa168d50eef8fba192e6e745f7c6 100644
|
| --- a/runtime/vm/allocation.h
|
| +++ b/runtime/vm/allocation.h
|
| @@ -37,13 +37,6 @@ class ValueObject {
|
| // to a stack frame above the frame where these objects were allocated.
|
| class StackResource {
|
| public:
|
| - // DEPRECATED: Use Thread-based interface. During migration, this defaults
|
| - // to using the mutator thread (which must also be the current thread).
|
| - explicit StackResource(Isolate* isolate) : thread_(NULL), previous_(NULL) {
|
| - Init((isolate == NULL) ?
|
| - NULL : reinterpret_cast<BaseIsolate*>(isolate)->mutator_thread_);
|
| - }
|
| -
|
| explicit StackResource(Thread* thread) : thread_(NULL), previous_(NULL) {
|
| Init(thread);
|
| }
|
|
|