mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
Userland: Remove dummy IPC methods
They're not used anywhere and are unnecessary boilerplate code. So let's remove them and update IPCCompiler to allow for empty endpoint declarations.
This commit is contained in:
committed by
Andreas Kling
parent
62f9377656
commit
ac650d2362
@@ -20,10 +20,6 @@ void Client::die()
|
||||
on_death();
|
||||
}
|
||||
|
||||
void Client::dummy()
|
||||
{
|
||||
}
|
||||
|
||||
Optional<DecodedImage> Client::decode_image(const ByteBuffer& encoded_data)
|
||||
{
|
||||
if (encoded_data.is_empty())
|
||||
|
||||
@@ -38,8 +38,6 @@ private:
|
||||
Client();
|
||||
|
||||
virtual void die() override;
|
||||
|
||||
virtual void dummy() override;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user