Skip to content

Commit 946c7b0

Browse files
committed
improve the code style
1 parent bfba6e7 commit 946c7b0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/task/switchtask

dolphinscheduler-common/src/main/java/org/apache/dolphinscheduler/common/task/switchtask/SwitchResultVo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void setNextNode(Object nextNode) {
4242
List<String> nextNodeList = new ArrayList<>();
4343
nextNodeList.add(String.valueOf(nextNode));
4444
this.nextNode = nextNodeList;
45-
} else if(nextNode instanceof Number) {
45+
} else if (nextNode instanceof Number) {
4646
List<String> nextNodeList = new ArrayList<>();
4747
nextNodeList.add(nextNode.toString());
4848
this.nextNode = nextNodeList;

0 commit comments

Comments
 (0)