chore(ActionExecutor): remove unused Void return value

This commit is contained in:
2026-03-07 14:20:07 +08:00
parent 1ce2038ab8
commit 28400545a7

View File

@@ -55,9 +55,8 @@ public class ActionExecutor extends AbstractAgentModule.Standalone {
* 执行行动 * 执行行动
* *
* @param input ActionExecutor 输入内容 * @param input ActionExecutor 输入内容
* @return 无返回,执行结果回写至 input 内部携带的 actionData 中
*/ */
public Void execute(ActionExecutorInput input) { public void execute(ActionExecutorInput input) {
val actions = input.getActions(); val actions = input.getActions();
// 异步执行所有行动 // 异步执行所有行动
for (ExecutableAction executableAction : actions) { for (ExecutableAction executableAction : actions) {
@@ -151,7 +150,6 @@ public class ActionExecutor extends AbstractAgentModule.Standalone {
} }
}); });
} }
return null;
} }
private MetaActionsListeningRecord executeAndListening(List<MetaAction> metaActions, PhaserRecord phaserRecord, String source) { private MetaActionsListeningRecord executeAndListening(List<MetaAction> metaActions, PhaserRecord phaserRecord, String source) {