Inline array initialization

Signed-off-by: TheMode <themode@outlook.fr>
This commit is contained in:
TheMode 2023-05-27 15:36:06 +02:00
parent 80f5db34a6
commit 9b15acf4fa

View File

@ -57,18 +57,14 @@ final class Serializers {
} }
private static int[] uuidToIntArray(UUID uuid) { private static int[] uuidToIntArray(UUID uuid) {
int[] array = new int[4];
final long uuidMost = uuid.getMostSignificantBits(); final long uuidMost = uuid.getMostSignificantBits();
final long uuidLeast = uuid.getLeastSignificantBits(); final long uuidLeast = uuid.getLeastSignificantBits();
return new int[]{
array[0] = (int) (uuidMost >> 32); (int) (uuidMost >> 32),
array[1] = (int) uuidMost; (int) uuidMost,
(int) (uuidLeast >> 32),
array[2] = (int) (uuidLeast >> 32); (int) uuidLeast
array[3] = (int) uuidLeast; };
return array;
} }
private static UUID intArrayToUuid(int[] array) { private static UUID intArrayToUuid(int[] array) {