mirror of
https://github.com/jeecgboot/jeecg-boot.git
synced 2025-09-10 04:59:30 +00:00
修复bug
This commit is contained in:
@@ -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]);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user