Skip to content

Commit 4cc4052

Browse files
authored
Delete unnecessary condition (#103)
1 parent e29a05e commit 4cc4052

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/fasterxml/uuid/impl/TimeBasedEpochGenerator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public UUID construct(long rawTimestamp)
128128
if (c) {
129129
byte temp = _lastEntropy[i];
130130
temp = (byte) (temp + 0x01);
131-
c = _lastEntropy[i] == (byte) 0xff && c;
131+
c = _lastEntropy[i] == (byte) 0xff;
132132
_lastEntropy[i] = temp;
133133
}
134134
}

0 commit comments

Comments
 (0)