summaryrefslogtreecommitdiff
path: root/Userland
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-10-20 17:58:07 +0100
committerLinus Groh <mail@linusgroh.de>2021-10-20 18:46:24 +0100
commitd3ef08217b93d74e50256e862783fdda3a22388c (patch)
treedb386ee37e38e31198ba99d900383d43a72f8187 /Userland
parentcf109533dea3917f559dc7e0a051dbf8d531051a (diff)
downloadserenity-d3ef08217b93d74e50256e862783fdda3a22388c.zip
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.
Diffstat (limited to 'Userland')
-rw-r--r--Userland/Libraries/LibJS/Runtime/ErrorTypes.h1
1 files changed, 0 insertions, 1 deletions
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 {