Inline array initialization

Signed-off-by: TheMode <themode@outlook.fr>
(cherry picked from commit 9b15acf4fa)
This commit is contained in:
TheMode 2023-05-27 15:36:06 +02:00 committed by mworzala
parent 96cd23fa7c
commit 315a97d677
No known key found for this signature in database
GPG Key ID: B148F922E64797C7

View File

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