1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 19:58:11 +00:00

IPCCompiler: Don't generate handlers for response messages

For some reason we had IPC handler methods for the return types. This
removes those handlers.
This commit is contained in:
Gunnar Beutner 2021-05-03 15:57:19 +02:00 committed by Andreas Kling
parent 9e22e9ce88
commit 34cf5cf07f

View file

@ -754,8 +754,6 @@ public:
)~~~");
};
do_handle_message(message.name, message.inputs, message.is_synchronous);
if (message.is_synchronous)
do_handle_message(message.response_name(), message.outputs, false);
}
endpoint_generator.append(R"~~~(
default:
@ -809,8 +807,6 @@ public:
};
do_handle_message_decl(message.name, message.inputs, false);
if (message.is_synchronous)
do_handle_message_decl(message.response_name(), message.outputs, true);
}
endpoint_generator.append(R"~~~(