mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +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:
committed by
Andreas Kling
parent
9e22e9ce88
commit
34cf5cf07f
@@ -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"~~~(
|
||||
|
||||
Reference in New Issue
Block a user