Index: Source/bindings/tests/results/V8TestInterfaceImplementedAs.cpp |
diff --git a/Source/bindings/tests/results/V8TestInterfaceImplementedAs.cpp b/Source/bindings/tests/results/V8TestInterfaceImplementedAs.cpp |
index 8c109591116e65db6a41059e1a70075a9e3b3053..0b62e6593334208f7148ef70a38e0191b2c7dd8f 100644 |
--- a/Source/bindings/tests/results/V8TestInterfaceImplementedAs.cpp |
+++ b/Source/bindings/tests/results/V8TestInterfaceImplementedAs.cpp |
@@ -126,7 +126,7 @@ static void bAttributeSetterCallback(v8::Local<v8::String>, v8::Local<v8::Value> |
static void func1Method(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
- if (UNLIKELY(info.Length() < 1)) { |
+ if (info.Length() < 1) { |
throwTypeError(ExceptionMessages::failedToExecute("func1", "TestInterfaceImplementedAs", ExceptionMessages::notEnoughArguments(1, info.Length())), info.GetIsolate()); |
return; |
} |
@@ -144,7 +144,7 @@ static void func1MethodCallback(const v8::FunctionCallbackInfo<v8::Value>& info) |
static void funcTestInterfaceImplementedAsParamMethod(const v8::FunctionCallbackInfo<v8::Value>& info) |
{ |
- if (UNLIKELY(info.Length() < 1)) { |
+ if (info.Length() < 1) { |
throwTypeError(ExceptionMessages::failedToExecute("funcTestInterfaceImplementedAsParam", "TestInterfaceImplementedAs", ExceptionMessages::notEnoughArguments(1, info.Length())), info.GetIsolate()); |
return; |
} |