Remove double closing '>'

This commit is contained in:
Sebastian Sieber
2021-10-19 13:57:06 +02:00
parent 6a34668265
commit 7e092d08be
2 changed files with 2 additions and 2 deletions

View File

@@ -214,7 +214,7 @@ public class PDFValidator extends Validator {
}
boolean documentFilenameValid=false;
for (int i = 0; i < nodes.getLength(); i++) {
String[] valueArray = { "factur-x.xml", "ZUGFeRD-invoice.xml", "zugferd-invoice.xml", "xrechnung.xml" , "order-x.xml" };
final String[] valueArray = { "factur-x.xml", "ZUGFeRD-invoice.xml", "zugferd-invoice.xml", "xrechnung.xml" , "order-x.xml" };
if (stringArrayContains(valueArray, nodes.item(i).getTextContent())) {
documentFilenameValid=true;
}