IdGenerator#toSimpleString 新增参数校验
parent
296e8995d6
commit
cee89835e5
|
@ -40,6 +40,7 @@ public class IdGenerator {
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String toSimpleString(UUID uuid) {
|
public static String toSimpleString(UUID uuid) {
|
||||||
|
AssertTools.checkArgumentNotNull(uuid);
|
||||||
return (uuidDigits(uuid.getMostSignificantBits() >> 32, 8) +
|
return (uuidDigits(uuid.getMostSignificantBits() >> 32, 8) +
|
||||||
uuidDigits(uuid.getMostSignificantBits() >> 16, 4) +
|
uuidDigits(uuid.getMostSignificantBits() >> 16, 4) +
|
||||||
uuidDigits(uuid.getMostSignificantBits(), 4) +
|
uuidDigits(uuid.getMostSignificantBits(), 4) +
|
||||||
|
|
Loading…
Reference in New Issue