diff --git a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/common/ArrayUtils.java b/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/common/ArrayUtils.java deleted file mode 100644 index def6056917f..00000000000 --- a/packages/react-native/ReactAndroid/src/main/java/com/facebook/react/common/ArrayUtils.java +++ /dev/null @@ -1,27 +0,0 @@ -/* - * Copyright (c) Meta Platforms, Inc. and affiliates. - * - * This source code is licensed under the MIT license found in the - * LICENSE file in the root directory of this source tree. - */ - -package com.facebook.react.common; - -import java.util.Arrays; -import java.util.List; -import javax.annotation.Nullable; - -public class ArrayUtils { - - public static float[] copyArray(@Nullable float[] array) { - return array == null ? null : Arrays.copyOf(array, array.length); - } - - public static int[] copyListToArray(List list) { - int[] array = new int[list.size()]; - for (int t = 0; t < list.size(); t++) { - array[t] = list.get(t); - } - return array; - } -}