Fix crash in mapping
This commit is contained in:
parent
731658eef8
commit
b2741dab0d
|
@ -87,7 +87,9 @@ public class FhirResourceDaoConceptMapDstu3 extends FhirResourceDaoDstu3<Concept
|
|||
if (targetsToReturn.add(target)) {
|
||||
translationMatch = new TranslationMatch();
|
||||
|
||||
translationMatch.setEquivalence(new CodeType(target.getEquivalence().toCode()));
|
||||
if (target.getEquivalence() != null) {
|
||||
translationMatch.setEquivalence(new CodeType(target.getEquivalence().toCode()));
|
||||
}
|
||||
|
||||
translationMatch.setConcept(
|
||||
new Coding()
|
||||
|
|
|
@ -83,7 +83,9 @@ public class FhirResourceDaoConceptMapR4 extends FhirResourceDaoR4<ConceptMap> i
|
|||
if (targetsToReturn.add(target)) {
|
||||
translationMatch = new TranslationMatch();
|
||||
|
||||
translationMatch.setEquivalence(new CodeType(target.getEquivalence().toCode()));
|
||||
if (target.getEquivalence() != null) {
|
||||
translationMatch.setEquivalence(new CodeType(target.getEquivalence().toCode()));
|
||||
}
|
||||
|
||||
translationMatch.setConcept(
|
||||
new Coding()
|
||||
|
|
|
@ -289,6 +289,10 @@
|
|||
was never depended on by anyone. Please post on the HAPI FHIR mailing list if this
|
||||
change affects you.
|
||||
</action>
|
||||
<action type="fix">
|
||||
A crash was fixed when using the ConceptMap/$translate operation to translate a mapping
|
||||
where the equivalence was not specified.
|
||||
</action>
|
||||
</release>
|
||||
<release version="3.4.0" date="2018-05-28">
|
||||
<action type="add">
|
||||
|
|
Loading…
Reference in New Issue