mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Add test for FabricText
Reviewed By: mdvacca Differential Revision: D7326562 fbshipit-source-id: e1229f84496e9181475979d757066e3796a24a3f
This commit is contained in:
committed by
Facebook Github Bot
parent
c49afb174f
commit
f136ae1362
@@ -11,10 +11,9 @@ public class ArrayUtils {
|
||||
|
||||
public static int[] copyListToArray(List<Integer> list) {
|
||||
int[] array = new int[list.size()];
|
||||
for (int t = 0 ; t < list.size() ; t++) {
|
||||
for (int t = 0; t < list.size(); t++) {
|
||||
array[t] = list.get(t);
|
||||
}
|
||||
return array;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user