Skip to content

Commit 8c16e65

Browse files
committed
IGNITE-27118 Remove this
1 parent 413e33e commit 8c16e65

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

modules/core/src/main/java/org/apache/ignite/internal/processors/rollingupgrade/RollingUpgradeProcessor.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,9 +99,8 @@ public RollingUpgradeProcessor(GridKernalContext ctx) {
9999
UUID nodeId = ((DiscoveryEvent)evt).eventNode().id();
100100

101101
synchronized (lock) {
102-
if (RollingUpgradeProcessor.this.lastJoiningNode != null
103-
&& RollingUpgradeProcessor.this.lastJoiningNode.id().equals(nodeId))
104-
RollingUpgradeProcessor.this.lastJoiningNode = null;
102+
if (lastJoiningNode != null && lastJoiningNode.id().equals(nodeId))
103+
lastJoiningNode = null;
105104
}
106105
}
107106
}, EVT_NODE_JOINED, EVT_NODE_FAILED, EVT_NODE_LEFT);

0 commit comments

Comments
 (0)