Browse Source

remove no useful code (#8552)

Co-authored-by: ywang46 <ywang46@paypal.com>
3.0.0/version-upgrade
Yao WANG 2 years ago committed by GitHub
parent
commit
67a6813e9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterSchedulerService.java

4
dolphinscheduler-master/src/main/java/org/apache/dolphinscheduler/server/master/runner/MasterSchedulerService.java

@ -179,10 +179,6 @@ public class MasterSchedulerService extends Thread {
}
private List<ProcessInstance> command2ProcessInstance(List<Command> commands) {
if (CollectionUtils.isEmpty(commands)) {
return null;
}
List<ProcessInstance> processInstances = new ArrayList<>(commands.size());
CountDownLatch latch = new CountDownLatch(commands.size());
for (final Command command : commands) {

Loading…
Cancel
Save