Skip to content

Commit

Permalink
META-254:Made ConceptReferenceTermHandler to show name
Browse files Browse the repository at this point in the history
  • Loading branch information
reagan-meant committed Nov 12, 2019
1 parent d80d76e commit c0d3b2d
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,11 @@ public Integer getId(ConceptReferenceTerm o) {
@Override
public String getName(ConceptReferenceTerm o) {
String name = "";
if (o.getConceptSource() != null) {
name += o.getConceptSource().getName() + ":";
if (o.getName() != null) {
name += o.getName() + " ";
}
if (o.getConceptSource() != null) {
name += o.getConceptSource().getName() + ": " ;
}
if (o.getCode() != null) {
name += o.getCode();
Expand Down

0 comments on commit c0d3b2d

Please sign in to comment.