Skip to content

Commit

Permalink
Delete unnecessary condition (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
k163377 authored Apr 30, 2024
1 parent e29a05e commit 4cc4052
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public UUID construct(long rawTimestamp)
if (c) {
byte temp = _lastEntropy[i];
temp = (byte) (temp + 0x01);
c = _lastEntropy[i] == (byte) 0xff && c;
c = _lastEntropy[i] == (byte) 0xff;
_lastEntropy[i] = temp;
}
}
Expand Down

0 comments on commit 4cc4052

Please sign in to comment.