From d3ef08217b93d74e50256e862783fdda3a22388c Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Wed, 20 Oct 2021 17:58:07 +0100 Subject: [PATCH] LibJS: Remove ErrorType::FixmeAddAnErrorString Just add a proper ErrorType the first time, it's not that hard. We can always iterate on the message later. --- Userland/Libraries/LibJS/Runtime/ErrorTypes.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibJS/Runtime/ErrorTypes.h b/Userland/Libraries/LibJS/Runtime/ErrorTypes.h index 09a1ffacfc..2f6f8467cb 100644 --- a/Userland/Libraries/LibJS/Runtime/ErrorTypes.h +++ b/Userland/Libraries/LibJS/Runtime/ErrorTypes.h @@ -238,7 +238,6 @@ M(BadArgCountOne, "{}() needs one argument") \ M(BadArgCountAtLeastOne, "{}() needs at least one argument") \ M(BadArgCountMany, "{}() needs {} arguments") \ - M(FixmeAddAnErrorString, "FIXME: Add a string for this error.") \ M(NotEnoughMemoryToAllocate, "Not enough memory to allocate {} bytes") namespace JS {