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:
Gunnar Beutner 2021-06-23 17:00:38 +02:00 committed by Andreas Kling
parent 62f9377656
commit ac650d2362
Notes: sideshowbarker 2024-07-18 11:36:20 +09:00
11 changed files with 4 additions and 19 deletions

View file

@ -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())