Yoke
Results
2
issues of
Yoke
### inappropriate code ``` if ("dwr:config-param".equals(child.getNodeName())) { params.put(child.getAttribute("name"), child.getAttribute("value")); } ``` ### correct ``` if ("config-param".equals(element.getLocalName())) { params.put(child.getAttribute("name"), child.getAttribute("value")); } ```