final tiny touch ups

This commit is contained in:
Sebastian Lenzlinger 2022-04-13 01:47:25 +02:00
parent 76e1ed3ff1
commit a6d416e457
2 changed files with 4 additions and 2 deletions

View File

@ -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();
} }

View File

@ -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