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
Notes: sideshowbarker 2024-07-18 18:44:22 +09:00

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"~~~(