Skip to content

Commit

Permalink
Disable xml validation for resource xml parser
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed Feb 18, 2011
1 parent 2bfe496 commit 69e73c7
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -60,7 +60,7 @@ public class NodesXMLParser implements NodeFileParser, ResourceXMLReceiver {
* Parse the project.xml formatted file and fill in the nodes found
*/
public void parse() throws NodeFileParserException {
final ResourceXMLParser resourceXMLParser = new ResourceXMLParser(true, file);
final ResourceXMLParser resourceXMLParser = new ResourceXMLParser(false, file);
//parse both node and settings
resourceXMLParser.setEntityXpath(NODE_ENTITY_TAG + "|" + SETTING_ENTITY_TAG);
resourceXMLParser.setReceiver(this);
Expand Down

0 comments on commit 69e73c7

Please sign in to comment.