Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ericsson#699 Reload nodes
Browse files Browse the repository at this point in the history
Paul Chandler committed Oct 21, 2024
1 parent 023a2a8 commit abed199
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -114,21 +114,21 @@ public static DistributedNativeBuilder builder()
}

/**
* Add a nw node to the list of nodes
* Add a nw node to the list of nodes.
* @param node
*/
@Override
public void addNode(Node node)
public void addNode(final Node node)
{
myNodes.add(node);
}

/**
* Remove node for the list of nodes
* Remove node for the list of nodes.
* @param node
*/
@Override
public void removeNode(Node node)
public void removeNode(final Node node)
{
myNodes.remove(node);
}

0 comments on commit abed199

Please sign in to comment.