diff options
author | Andreas Kling <kling@serenityos.org> | 2023-04-24 10:36:53 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-04-25 14:48:40 +0200 |
commit | 3de8dd921ed3715db5e40f9c0ceb34811d89aaa6 (patch) | |
tree | cc95902ccb4d011561bae102f67a35e58cf9f073 /Userland/Libraries/LibCore/Object.h | |
parent | c756e021a7d89d02d2dccab20a1f53244d80bb9e (diff) | |
download | serenity-3de8dd921ed3715db5e40f9c0ceb34811d89aaa6.zip |
Userland: Remove serialize-to-JSON functions only used for Inspector
Diffstat (limited to 'Userland/Libraries/LibCore/Object.h')
-rw-r--r-- | Userland/Libraries/LibCore/Object.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibCore/Object.h b/Userland/Libraries/LibCore/Object.h index da518e2a31..8e5503776f 100644 --- a/Userland/Libraries/LibCore/Object.h +++ b/Userland/Libraries/LibCore/Object.h @@ -157,8 +157,6 @@ public: void deferred_invoke(Function<void()>); - void save_to(JsonObject&); - bool set_property(DeprecatedString const& name, JsonValue const& value); JsonValue property(DeprecatedString const& name) const; HashMap<DeprecatedString, NonnullOwnPtr<Property>> const& properties() const { return m_properties; } |