1.0.0-RC2 #19

Merged
ZhouXY108 merged 106 commits from 1.x.x into dev 2025-01-07 17:18:48 +08:00
Showing only changes of commit cee89835e5 - Show all commits

View File

@ -40,6 +40,7 @@ public class IdGenerator {
}
public static String toSimpleString(UUID uuid) {
AssertTools.checkArgumentNotNull(uuid);
return (uuidDigits(uuid.getMostSignificantBits() >> 32, 8) +
uuidDigits(uuid.getMostSignificantBits() >> 16, 4) +
uuidDigits(uuid.getMostSignificantBits(), 4) +