fix bug in code system comparison
This commit is contained in:
parent
1eda0aa128
commit
765f24a233
|
@ -420,11 +420,13 @@ public class CodeSystemComparer extends CanonicalResourceComparer {
|
||||||
c = comp.getPropMap().get(c);
|
c = comp.getPropMap().get(c);
|
||||||
}
|
}
|
||||||
ConceptPropertyComponent cp = null;
|
ConceptPropertyComponent cp = null;
|
||||||
|
if (cd != null) {
|
||||||
for (ConceptPropertyComponent t : cd.getProperty()) {
|
for (ConceptPropertyComponent t : cd.getProperty()) {
|
||||||
if (t.getCode().equals(c)) {
|
if (t.getCode().equals(c)) {
|
||||||
cp = t;
|
cp = t;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return cp;
|
return cp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue