mirror of
https://github.com/hapifhir/org.hl7.fhir.core.git
synced 2025-02-09 06:14:45 +00:00
set equivalence relationship in parsing
This commit is contained in:
parent
344d778a87
commit
4f21c40f83
@ -789,8 +789,7 @@ public class StructureMapUtilities {
|
||||
if (e.getCode().startsWith("\""))
|
||||
e.setCode(lexer.processConstant(e.getCode()));
|
||||
TargetElementComponent tgt = e.addTarget();
|
||||
if (eq != ConceptMapEquivalence.EQUIVALENT)
|
||||
tgt.setEquivalence(eq);
|
||||
tgt.setEquivalence(eq);
|
||||
if (tgt.getEquivalence() != ConceptMapEquivalence.UNMATCHED) {
|
||||
lexer.token(":");
|
||||
tgt.setCode(lexer.take());
|
||||
|
@ -796,8 +796,7 @@ public class StructureMapUtilities {
|
||||
if (e.getCode().startsWith("\""))
|
||||
e.setCode(lexer.processConstant(e.getCode()));
|
||||
TargetElementComponent tgt = e.addTarget();
|
||||
if (rel != ConceptMapRelationship.EQUIVALENT)
|
||||
tgt.setRelationship(rel);
|
||||
tgt.setRelationship(rel);
|
||||
lexer.token(":");
|
||||
tgt.setCode(lexer.take());
|
||||
if (tgt.getCode().startsWith("\""))
|
||||
|
Loading…
x
Reference in New Issue
Block a user