From fc265b7600199e30a3843ad56c42a21f44059367 Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Fri, 17 Nov 2017 06:15:53 +1100 Subject: [PATCH] linter plz --- atom/common/api/event_emitter_caller.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atom/common/api/event_emitter_caller.cc b/atom/common/api/event_emitter_caller.cc index d46eb1dfa55e..ff920c679733 100644 --- a/atom/common/api/event_emitter_caller.cc +++ b/atom/common/api/event_emitter_caller.cc @@ -26,7 +26,7 @@ v8::Local CallMethodWithArgs(v8::Isolate* isolate, // If the JS function throws an exception (doesn't return a value) the result // of MakeCallback will be empty and therefore ToLocal will be false, in this // case we need to return "false" as that indicates that the event emitter did - // not handle the event + // not handle the event v8::Local localRet; if (ret.ToLocal(&localRet)) { return localRet;