mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-15 15:22:52 +00:00
修复bug
This commit is contained in:
parent
5c00114d7c
commit
99e5160436
@ -119,10 +119,10 @@ public class oConvertUtils {
|
||||
}
|
||||
|
||||
public static Integer[] getInts(String[] s) {
|
||||
Integer[] integer = new Integer[s.length];
|
||||
if (s == null) {
|
||||
return null;
|
||||
}
|
||||
Integer[] integer = new Integer[s.length];
|
||||
for (int i = 0; i < s.length; i++) {
|
||||
integer[i] = Integer.parseInt(s[i]);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user