summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2023-01-27 17:08:56 +0000
committerLinus Groh <mail@linusgroh.de>2023-01-27 20:33:18 +0000
commita39ac5a31213a7b9b4a2c207a58036550e3d9de7 (patch)
tree718090c52bd1c4cd86af4c1e373360842148102f /Userland/Libraries
parentc4c65ba7278b65d747b47fda98656f35b2b29523 (diff)
downloadserenity-a39ac5a31213a7b9b4a2c207a58036550e3d9de7.zip
LibJS: Remove declarations for non-existent methods
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibJS/Runtime/PrimitiveString.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/PrimitiveString.h b/Userland/Libraries/LibJS/Runtime/PrimitiveString.h
index 91c778ac60..3950e22aee 100644
--- a/Userland/Libraries/LibJS/Runtime/PrimitiveString.h
+++ b/Userland/Libraries/LibJS/Runtime/PrimitiveString.h
@@ -34,7 +34,6 @@ public:
PrimitiveString& operator=(PrimitiveString const&) = delete;
bool is_empty() const;
- u32 hash() const;
ThrowCompletionOr<String> utf8_string() const;
ThrowCompletionOr<StringView> utf8_string_view() const;