Checkstyle

This commit is contained in:
Clément Fournier
2020-10-27 01:20:02 +01:00
parent 4ef725764a
commit b19eff5eee

View File

@ -131,8 +131,10 @@ class XmlNodeWrapper implements XmlNode {
if (node.getAttributes() == null) {
return emptyIterator();
} else {
return IteratorUtil.map(asList(node.getAttributes()).iterator(),
n -> new Attribute(this, n.getNodeName(), n.getNodeValue()));
return IteratorUtil.map(
asList(node.getAttributes()).iterator(),
n -> new Attribute(this, n.getNodeName(), n.getNodeValue())
);
}
}