final tiny touch ups
This commit is contained in:
parent
76e1ed3ff1
commit
a6d416e457
@ -9,7 +9,9 @@ public interface NodeWithChildren {
|
|||||||
|
|
||||||
void create();
|
void create();
|
||||||
|
|
||||||
public default Node getChildren(){};
|
public default Node getChildren() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
void createNodeHierarchy();
|
void createNodeHierarchy();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -19,7 +19,7 @@ public class OutMsgTargetChooserNode extends ToggleGroup implements NodeWithChil
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Node getChildren() {
|
public Node getChildren() {
|
||||||
NodeWithChildren.super.getChildren();
|
return NodeWithChildren.super.getChildren();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
Reference in New Issue
Block a user