1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:07:34 +00:00

LibIPC: Remove redundant IPC::Dictionary type

We already have and use HashMap<DeprecatedString, DeprecatedString>
nearly everywhere, which is essentially equivalent.
This commit is contained in:
Ben Wiederhake 2023-05-14 23:04:47 +02:00 committed by Andreas Kling
parent d030f0fe9b
commit 943ecaede6
7 changed files with 0 additions and 94 deletions

View file

@ -128,9 +128,6 @@ ErrorOr<void> encode(Encoder&, Time const&);
template<>
ErrorOr<void> encode(Encoder&, URL const&);
template<>
ErrorOr<void> encode(Encoder&, Dictionary const&);
template<>
ErrorOr<void> encode(Encoder&, File const&);