Skip to content

Commit

Permalink
Fix incorrect super method invocation in OperationSnapshotControlEx.s…
Browse files Browse the repository at this point in the history
…napshotCompletedConsistently
  • Loading branch information
rcaudy committed Oct 19, 2023
1 parent a1ba511 commit 286e498
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public synchronized boolean snapshotCompletedConsistently(long afterClockValue,
.endl();
}
return extra.getLastNotificationStep() == extraLastNotificationStep
&& super.snapshotConsistent(afterClockValue, usedPreviousValues);
&& super.snapshotCompletedConsistently(afterClockValue, usedPreviousValues);
}

@Override
Expand Down

0 comments on commit 286e498

Please sign in to comment.