mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:37:59 +08:00
fix code
This commit is contained in:
parent
94100fc7cd
commit
77d3015bc0
@ -11,7 +11,6 @@ import cn.hutool.core.text.StrJoiner;
|
||||
import cn.hutool.core.util.ArrayUtil;
|
||||
import cn.hutool.core.util.ObjectUtil;
|
||||
import cn.hutool.core.util.ReflectUtil;
|
||||
import com.sun.xml.internal.ws.util.xml.NodeListIterator;
|
||||
import org.w3c.dom.Node;
|
||||
import org.w3c.dom.NodeList;
|
||||
|
||||
@ -1035,10 +1034,10 @@ public class IterUtil {
|
||||
} else if (obj instanceof Map) {
|
||||
return ((Map<?, ?>) obj).entrySet().iterator();
|
||||
} else if (obj instanceof NodeList) {
|
||||
return new NodeListIterator((NodeList) obj);
|
||||
return new NodeListIter((NodeList) obj);
|
||||
} else if (obj instanceof Node) {
|
||||
// 遍历子节点
|
||||
return new NodeListIterator(((Node) obj).getChildNodes());
|
||||
return new NodeListIter(((Node) obj).getChildNodes());
|
||||
} else if (obj instanceof Dictionary) {
|
||||
return new EnumerationIter<>(((Dictionary<?, ?>) obj).elements());
|
||||
}
|
||||
|
@ -288,7 +288,7 @@ public class MapUtil {
|
||||
* @param pairs 键值对
|
||||
* @return Map
|
||||
* @since 5.4.1
|
||||
* @deprecated 方法容易歧义,请使用 {@link #ofEntries(Entry[])}
|
||||
* @deprecated 方法容易歧义,请使用 {@code #ofEntries(Entry[])}
|
||||
*/
|
||||
@SafeVarargs
|
||||
@Deprecated
|
||||
|
Loading…
Reference in New Issue
Block a user