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:
parent
9e22e9ce88
commit
34cf5cf07f
Notes:
sideshowbarker
2024-07-18 18:44:22 +09:00
Author: https://github.com/gunnarbeutner Commit: https://github.com/SerenityOS/serenity/commit/34cf5cf07f9
1 changed files with 0 additions and 4 deletions
|
@ -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"~~~(
|
||||
|
|
Loading…
Add table
Reference in a new issue