Skip to content

Commit

Permalink
Merge pull request #84 from MeasureAuthoringTool/MAT-7327
Browse files Browse the repository at this point in the history
MAT-7327 QDM: Increase the number of SDEs and RAVs supported
  • Loading branch information
adongare authored Jul 15, 2024
2 parents 5e9b677 + 11d6440 commit f372ffb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/gov/cms/madie/hqmf/XMLUtility.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public class XMLUtility {
"http://xml.org/sax/features/external-general-entities";
private static final String EXTERNAL_PARAMETER_ENTITIES =
"http://xml.org/sax/features/external-parameter-entities";
private static final String X_PATH_EXPR_OP_LIMIT = "jdk.xml.xpathExprOpLimit";

public static XMLUtility getInstance() {
if (instance == null) {
Expand Down Expand Up @@ -95,6 +96,7 @@ public String getXMLResource(String name) {
}

public TransformerFactory buildTransformerFactory() {
System.setProperty(X_PATH_EXPR_OP_LIMIT, "400");
TransformerFactory transformerFactory = SAXTransformerFactory.newInstance();

try {
Expand Down

0 comments on commit f372ffb

Please sign in to comment.