summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/IndexedProperties.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-07-04 22:57:02 +0100
committerAndreas Kling <kling@serenityos.org>2021-07-05 00:03:25 +0200
commit9fe363eaad37915b0071fab369abe527efee4535 (patch)
tree6aa31960e06d35778f7037ff9869126744bf429d /Userland/Libraries/LibJS/Runtime/IndexedProperties.h
parent9555ca99a032c764e659452b09d664bd4f68fd10 (diff)
downloadserenity-9fe363eaad37915b0071fab369abe527efee4535.zip
LibJS: Remove now unused IndexedPropertyIterator::value_and_attributes()
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/IndexedProperties.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/IndexedProperties.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/IndexedProperties.h b/Userland/Libraries/LibJS/Runtime/IndexedProperties.h
index 67561e8092..9f8b4044eb 100644
--- a/Userland/Libraries/LibJS/Runtime/IndexedProperties.h
+++ b/Userland/Libraries/LibJS/Runtime/IndexedProperties.h
@@ -101,7 +101,6 @@ public:
bool operator!=(const IndexedPropertyIterator&) const;
u32 index() const { return m_index; };
- ValueAndAttributes value_and_attributes();
private:
void skip_empty_indices();