diff --git a/projects-parent/archetypes-parent/phonebill-archetype/src/main/resources/archetype-resources/src/test/java/PhoneBillXmlHelperTest.java b/projects-parent/archetypes-parent/phonebill-archetype/src/main/resources/archetype-resources/src/test/java/PhoneBillXmlHelperTest.java index 43cefe97f..833b09c90 100644 --- a/projects-parent/archetypes-parent/phonebill-archetype/src/main/resources/archetype-resources/src/test/java/PhoneBillXmlHelperTest.java +++ b/projects-parent/archetypes-parent/phonebill-archetype/src/main/resources/archetype-resources/src/test/java/PhoneBillXmlHelperTest.java @@ -20,7 +20,6 @@ class PhoneBillXmlHelperTest { void canParseValidXmlFile() throws ParserConfigurationException, IOException, SAXException { PhoneBillXmlHelper helper = new PhoneBillXmlHelper(); - DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); factory.setValidating(true); @@ -37,7 +36,6 @@ void canParseValidXmlFile() throws ParserConfigurationException, IOException, SA void cantParseInvalidXmlFile() throws ParserConfigurationException { PhoneBillXmlHelper helper = new PhoneBillXmlHelper(); - DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); factory.setValidating(true);