mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-03-01 17:09:08 +00:00
fix bug in Element.toString
This commit is contained in:
parent
e0add75d2f
commit
494b268d0b
@ -2336,7 +2336,7 @@ public class ElementDefinition extends BackboneType implements ICompositeType {
|
|||||||
if (hasTargetProfile()) {
|
if (hasTargetProfile()) {
|
||||||
res = res + "->(";
|
res = res + "->(";
|
||||||
boolean first = true;
|
boolean first = true;
|
||||||
for (CanonicalType s : getProfile()) {
|
for (CanonicalType s : getTargetProfile()) {
|
||||||
if (first) first = false; else res = res + "|";
|
if (first) first = false; else res = res + "|";
|
||||||
res = res + s.getValue();
|
res = res + s.getValue();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user