Skip to content

Commit

Permalink
fix: forgot a case where using a constant is better
Browse files Browse the repository at this point in the history
  • Loading branch information
GtanSndil committed Jan 17, 2024
1 parent a54d459 commit 302593b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public List<ResponseItem> getDDICodeListSchemeFromGroupRoot(String idGroupRoot)
List<ResponseItem> clsList = new ArrayList<>();
log.debug("GroupRoot id : " + idGroupRoot);
String fragment = getItem(idGroupRoot).item;
String rootExp = "//*[local-name()='Fragment']";
String rootExp = NAME_FRAGMENT;
Node rootNode = xpathProcessor.queryList(fragment, rootExp).item(0);
String childGroupExp = ".//*[local-name()='GroupReference']/*[local-name()='ID']/text()";
String idGroup = xpathProcessor.queryString(rootNode, childGroupExp);
Expand Down

0 comments on commit 302593b

Please sign in to comment.