Fixed Out Of Memory issue during resource validation with local reference check enabled - fix

This commit is contained in:
volodymyr 2023-08-29 10:39:51 -06:00
parent 9778793554
commit b2e90dc3dc
1 changed files with 2 additions and 2 deletions

View File

@ -1080,7 +1080,7 @@ public class FHIRPathEngine {
} }
} }
private static class ExecutionContext { private class ExecutionContext {
private Object appInfo; private Object appInfo;
private Base focusResource; private Base focusResource;
private Base rootResource; private Base rootResource;
@ -5909,7 +5909,7 @@ public class FHIRPathEngine {
return result; return result;
} }
public class ElementDefinitionMatch { public static class ElementDefinitionMatch {
private ElementDefinition definition; private ElementDefinition definition;
private ElementDefinition sourceDefinition; // if there was a content reference private ElementDefinition sourceDefinition; // if there was a content reference
private String fixedType; private String fixedType;