mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 01:54:22 +00:00
Used StringUtils instead of equals
This commit is contained in:
@@ -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(
|
||||
|
Reference in New Issue
Block a user