mirror of https://github.com/jeecgboot/jeecg-boot
优化oConvertUtils中childArray转换逻辑
parent
9579a60abd
commit
0813dee0d4
|
@ -463,7 +463,7 @@ public class oConvertUtils {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
String[] childs = childArray.toArray(new String[]{});
|
List<String> childs = childArray.toJavaList(String.class);
|
||||||
for (String v : childs) {
|
for (String v : childs) {
|
||||||
if (!isIn(v, all)) {
|
if (!isIn(v, all)) {
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue