Used StringUtils instead of equals

This commit is contained in:
Raf Ponsaerts
2020-12-07 13:42:51 +01:00
parent efbc0c63c1
commit 487fc1f499

View File

@@ -377,7 +377,7 @@ public class SubmissionConfigReader {
for (int i = 0; i < len; i++) {
Node nd = nl.item(i);
// process each step definition
if (nd.getNodeName().equals("step-definition")) {
if (StringUtils.equalsIgnoreCase(nd.getNodeName(), "step-definition")) {
String stepID = getAttribute(nd, "id");
if (stepID == null) {
throw new SAXException(