| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 0214fd9b87a2217fc8b7c5746a6189a67a4df9cc..ace5989735f3e1c29198e9e97ea1476bdc42e2a6 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -15406,7 +15406,6 @@ RawUnwindError* UnwindError::New(const String& message, Heap::Space space) {
|
| }
|
| result.set_message(message);
|
| result.set_is_user_initiated(false);
|
| - result.set_is_vm_restart(false);
|
| return result.raw();
|
| }
|
|
|
| @@ -15421,11 +15420,6 @@ void UnwindError::set_is_user_initiated(bool value) const {
|
| }
|
|
|
|
|
| -void UnwindError::set_is_vm_restart(bool value) const {
|
| - StoreNonPointer(&raw_ptr()->is_vm_restart_, value);
|
| -}
|
| -
|
| -
|
| const char* UnwindError::ToErrorCString() const {
|
| const String& msg_str = String::Handle(message());
|
| return msg_str.ToCString();
|
|
|