From 6d55e0572d9066b98a83dc863b9dbaac9698319b Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sat, 11 Sep 2021 16:46:42 -0400 Subject: [PATCH] LibJS: Remove ErrorType::NotA and ErrorType::NotAn --- Userland/Libraries/LibJS/Runtime/ErrorTypes.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Libraries/LibJS/Runtime/ErrorTypes.h b/Userland/Libraries/LibJS/Runtime/ErrorTypes.h index ba8b74cd3a..c42914cd43 100644 --- a/Userland/Libraries/LibJS/Runtime/ErrorTypes.h +++ b/Userland/Libraries/LibJS/Runtime/ErrorTypes.h @@ -57,11 +57,9 @@ M(JsonMalformed, "Malformed JSON string") \ M(NegativeExponent, "Exponent must be positive") \ M(NonExtensibleDefine, "Cannot define property {} on non-extensible object") \ - M(NotA, "Not an object of type {}") \ M(NotAConstructor, "{} is not a constructor") \ M(NotAFunction, "{} is not a function") \ M(NotAFunctionNoParam, "Not a function") \ - M(NotAn, "Not an {} object") \ M(NotAnObject, "{} is not an object") \ M(NotAnObjectOfType, "Not an object of type {}") \ M(NotAnObjectOrNull, "{} is neither an object nor null") \