We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e29a05e commit 4cc4052Copy full SHA for 4cc4052
src/main/java/com/fasterxml/uuid/impl/TimeBasedEpochGenerator.java
@@ -128,7 +128,7 @@ public UUID construct(long rawTimestamp)
128
if (c) {
129
byte temp = _lastEntropy[i];
130
temp = (byte) (temp + 0x01);
131
- c = _lastEntropy[i] == (byte) 0xff && c;
+ c = _lastEntropy[i] == (byte) 0xff;
132
_lastEntropy[i] = temp;
133
}
134
0 commit comments