修复bug

pull/4077/head
zhangdaiscott 2022-09-29 13:52:24 +08:00
parent 5c00114d7c
commit 99e5160436
1 changed files with 1 additions and 1 deletions

View File

@ -119,10 +119,10 @@ public class oConvertUtils {
} }
public static Integer[] getInts(String[] s) { public static Integer[] getInts(String[] s) {
Integer[] integer = new Integer[s.length];
if (s == null) { if (s == null) {
return null; return null;
} }
Integer[] integer = new Integer[s.length];
for (int i = 0; i < s.length; i++) { for (int i = 0; i < s.length; i++) {
integer[i] = Integer.parseInt(s[i]); integer[i] = Integer.parseInt(s[i]);
} }