diff --git a/src/main/java/com/fasterxml/uuid/impl/TimeBasedEpochGenerator.java b/src/main/java/com/fasterxml/uuid/impl/TimeBasedEpochGenerator.java index 0e01195..42157ce 100644 --- a/src/main/java/com/fasterxml/uuid/impl/TimeBasedEpochGenerator.java +++ b/src/main/java/com/fasterxml/uuid/impl/TimeBasedEpochGenerator.java @@ -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; } }