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:
volodymyr-korzh 2023-08-29 11:29:22 -06:00 committed by GitHub
parent 9048983155
commit 119bfcba4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -116,7 +116,7 @@ public class FHIRPathEngine {
private enum Equality { Null, True, False }
private class FHIRConstant extends Base {
private static class FHIRConstant extends Base {
private static final long serialVersionUID = -8933773658248269439L;
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 Base instance;
@ -1139,7 +1139,7 @@ public class FHIRPathEngine {
}
}
private class ExecutionTypeContext {
private static class ExecutionTypeContext {
private Object appInfo;
private String resource;
private TypeDetails context;
@ -5909,7 +5909,7 @@ public class FHIRPathEngine {
return result;
}
public class ElementDefinitionMatch {
public static class ElementDefinitionMatch {
private ElementDefinition definition;
private ElementDefinition sourceDefinition; // if there was a content reference
private String fixedType;