fix ()
This commit is contained in:
parent
7368e2b454
commit
9df1a58118
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ public class RouteDataObject {
|
|||
|
||||
public String getDestinationName(String lang, boolean transliterate, boolean direction){
|
||||
//Issue #3289: Treat destination:ref like a destination, not like a ref
|
||||
String destRef = ((getDestinationRef(direction) == null) || getDestinationRef(direction).equals(getRef(direction)) ? "" : getDestinationRef(direction);
|
||||
String destRef = ((getDestinationRef(direction) == null) || getDestinationRef(direction).equals(getRef(direction))) ? "" : getDestinationRef(direction);
|
||||
String destRef1 = ("".equals(destRef)) ? "" : destRef + ", ";
|
||||
|
||||
if(names != null) {
|
||||
|
|
Loading…
Reference in a new issue