mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-07 13:28:12 +00:00
fix for NPE in an IG
This commit is contained in:
parent
82a4c02a8f
commit
a732847f58
@ -3334,10 +3334,12 @@ public class FHIRPathEngine {
|
||||
Base res = null;
|
||||
if (s.startsWith("#")) {
|
||||
Property p = context.rootResource.getChildByName("contained");
|
||||
for (Base c : p.getValues()) {
|
||||
if (chompHash(s).equals(chompHash(c.getIdBase()))) {
|
||||
res = c;
|
||||
break;
|
||||
if (p != null) {
|
||||
for (Base c : p.getValues()) {
|
||||
if (chompHash(s).equals(chompHash(c.getIdBase()))) {
|
||||
res = c;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (hostServices != null) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user