-
Notifications
You must be signed in to change notification settings - Fork 75
v0.2.50..v0.2.51 changeset LogJs.cpp
Garret Voltz edited this page Jan 15, 2020
·
1 revision
diff --git a/hoot-js/src/main/cpp/hoot/js/util/LogJs.cpp b/hoot-js/src/main/cpp/hoot/js/util/LogJs.cpp
index 87f4685..a11e952 100644
--- a/hoot-js/src/main/cpp/hoot/js/util/LogJs.cpp
+++ b/hoot-js/src/main/cpp/hoot/js/util/LogJs.cpp
@@ -193,7 +193,7 @@ void LogJs::logError(const FunctionCallbackInfo<Value>& args)
void LogJs::logFatal(const FunctionCallbackInfo<Value>& args)
{
Isolate* current = args.GetIsolate();
- HandleScope scope(current);;
+ HandleScope scope(current);
log(args, Log::Fatal);
args.GetReturnValue().SetUndefined();
}