Skip to content

Commit

Permalink
Ericsson#699 Reload nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Chandler committed Oct 21, 2024
1 parent 41b3823 commit c4c8e71
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,16 @@ public void setNodes(List<Node> nodes) {
public List<Node> reloadNodes() {
return nodesList;
}

@Override
public void addNode(Node myNode) {
nodesList.add(myNode);
}

@Override
public void removeNode(Node myNode) {
nodesList.remove(myNode);
}
};
}

Expand Down

0 comments on commit c4c8e71

Please sign in to comment.