fix for NPE in an IG
This commit is contained in:
parent
82a4c02a8f
commit
a732847f58
|
@ -3334,12 +3334,14 @@ public class FHIRPathEngine {
|
|||
Base res = null;
|
||||
if (s.startsWith("#")) {
|
||||
Property p = context.rootResource.getChildByName("contained");
|
||||
if (p != null) {
|
||||
for (Base c : p.getValues()) {
|
||||
if (chompHash(s).equals(chompHash(c.getIdBase()))) {
|
||||
res = c;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (hostServices != null) {
|
||||
res = hostServices.resolveReference(context.appInfo, s, refContext);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue