Fixed Out Of Memory issue during resource validation with local reference check enabled (#1413)
* Fixed Out Of Memory issue during resource validation with local reference check enabled * Fixed Out Of Memory issue during resource validation with local reference check enabled - fix
This commit is contained in:
parent
9048983155
commit
119bfcba4e
|
@ -116,7 +116,7 @@ public class FHIRPathEngine {
|
||||||
|
|
||||||
private enum Equality { Null, True, False }
|
private enum Equality { Null, True, False }
|
||||||
|
|
||||||
private class FHIRConstant extends Base {
|
private static class FHIRConstant extends Base {
|
||||||
|
|
||||||
private static final long serialVersionUID = -8933773658248269439L;
|
private static final long serialVersionUID = -8933773658248269439L;
|
||||||
private String value;
|
private String value;
|
||||||
|
@ -158,7 +158,7 @@ public class FHIRPathEngine {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class ClassTypeInfo extends Base {
|
private static class ClassTypeInfo extends Base {
|
||||||
private static final long serialVersionUID = 4909223114071029317L;
|
private static final long serialVersionUID = 4909223114071029317L;
|
||||||
private Base instance;
|
private Base instance;
|
||||||
|
|
||||||
|
@ -1139,7 +1139,7 @@ public class FHIRPathEngine {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private class ExecutionTypeContext {
|
private static class ExecutionTypeContext {
|
||||||
private Object appInfo;
|
private Object appInfo;
|
||||||
private String resource;
|
private String resource;
|
||||||
private TypeDetails context;
|
private TypeDetails context;
|
||||||
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue