Skip to content

Commit

Permalink
previous commit fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Dec 5, 2019
1 parent b42e739 commit 6165611
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -333,7 +333,7 @@ public static String getReferencedObjectDisplayNamesAndNames(Referencable ref, b
return "";
}
String name = ref.getTargetName() == null ? "" :
(translate ? ref.getTargetName().getOrig());
(translate ? ref.getTargetName().getOrig() : "");
StringBuilder sb = new StringBuilder(name);
if(showTypes) {
sb.append(" (");
Expand Down

0 comments on commit 6165611

Please sign in to comment.