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 11, 2024
1 parent d13e257 commit 48cd078
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,12 @@ List<NodeChangeRecord> compareNodeLists(final List<Node> oldNodes, final List<No
private Node getNode(final Iterator<Node> iterator)
{
Node node;
if ( iterator.hasNext()) {
if (iterator.hasNext())
{
node = iterator.next();
}
else {
else
{
node = null;
}
return node;
Expand Down

0 comments on commit 48cd078

Please sign in to comment.