Fix message for exception
This commit is contained in:
parent
72a108f960
commit
ad54ac6f5e
|
@ -65,7 +65,7 @@ public class UUIDGenerator {
|
||||||
try {
|
try {
|
||||||
md = MessageDigest.getInstance("SHA-1");
|
md = MessageDigest.getInstance("SHA-1");
|
||||||
} catch (NoSuchAlgorithmException nsae) {
|
} catch (NoSuchAlgorithmException nsae) {
|
||||||
throw new InternalError("MD5 not supported", nsae);
|
throw new InternalError("SHA-1 not supported", nsae);
|
||||||
}
|
}
|
||||||
byte[] bytes = Arrays.copyOfRange(md.digest(name), 0, 16);
|
byte[] bytes = Arrays.copyOfRange(md.digest(name), 0, 16);
|
||||||
bytes[6] &= 0x0f; /* clear version */
|
bytes[6] &= 0x0f; /* clear version */
|
||||||
|
|
Loading…
Reference in New Issue