Index: src/api.h |
diff --git a/src/api.h b/src/api.h |
index 128087c895137c876bd62de869ba022a8d074afa..3ebdca74ed6090bb449753e4e6c6adfd32666726 100644 |
--- a/src/api.h |
+++ b/src/api.h |
@@ -318,9 +318,7 @@ template <class T> |
v8::internal::Handle<T> v8::internal::Handle<T>::EscapeFrom( |
v8::EscapableHandleScope* scope) { |
v8::internal::Handle<T> handle; |
- if (!is_null()) { |
- handle = *this; |
- } |
+ if (!this->is_null()) handle = *this; |
return Utils::OpenHandle(*scope->Escape(Utils::ToLocal(handle)), true); |
} |