We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7130715 commit 1c8b70dCopy full SHA for 1c8b70d
1 file changed
src/main/java/io/github/honhimw/uuid/gen/V7.java
@@ -257,9 +257,6 @@ private static class Precision12 extends Precision {
257
@Override
258
long apply(long value, ReseedingTimestamp timestamp) {
259
long addition = timestamp.nanos % 1_000_000 * 2000 / 488_281;
260
- if (addition > 4081) {
261
- System.out.println(addition);
262
- }
263
return value & this.mask | (addition << this.shift);
264
}
265
0 commit comments