refactor(SandboxRunnerClient): align doRun visibility with superclass

This commit is contained in:
2025-12-19 23:34:17 +08:00
parent 9762739138
commit 9e76c3e7ad

View File

@@ -29,7 +29,7 @@ public class SandboxRunnerClient extends RunnerClient {
super(existedMetaActions, executor); super(existedMetaActions, executor);
} }
public RunnerResponse doRun(MetaAction metaAction) { protected RunnerResponse doRun(MetaAction metaAction) {
// 调用沙盒执行器 // 调用沙盒执行器
return null; return null;
} }