| Index: runtime/vm/message_handler.cc
|
| diff --git a/runtime/vm/message_handler.cc b/runtime/vm/message_handler.cc
|
| index b83c1398982ae3647e28658bc929806c2acaa463..6a473dd74033f4c6d019be2437de0c7a8ec29aa9 100644
|
| --- a/runtime/vm/message_handler.cc
|
| +++ b/runtime/vm/message_handler.cc
|
| @@ -121,7 +121,7 @@ void MessageHandler::PostMessage(Message* message, bool before_events) {
|
| }
|
| message = NULL; // Do not access message. May have been deleted.
|
|
|
| - if ((pool_ != NULL) && (task_ == NULL)) {
|
| + if (pool_ != NULL && task_ == NULL) {
|
| task_ = new MessageHandlerTask(this);
|
| pool_->Run(task_);
|
| }
|
| @@ -146,7 +146,7 @@ bool MessageHandler::HandleMessages(bool allow_normal_messages,
|
| // If isolate() returns NULL StartIsolateScope does nothing.
|
| StartIsolateScope start_isolate(isolate());
|
|
|
| - // ThreadInterrupter may have gone to sleep while waiting for
|
| + // ThreadInterrupter may have gone to sleep waiting while waiting for
|
| // an isolate to start handling messages.
|
| ThreadInterrupter::WakeUp();
|
|
|
|
|