Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ public BaseComposableNode(String name) {
node = RCLJava.createNode(this.name);
}

public BaseComposableNode(String name, String namespace) {
this.name = name;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this.name can be deleted from the class, as it's not used.
I will ignore that in this review because it's unrelated to the PR.

node = RCLJava.createNode(name, namespace);
}

public Node getNode() {
return node;
}
Expand Down