fix for now
This commit is contained in:
parent
cba84a4e77
commit
5a3fc1b0df
1 changed files with 3 additions and 2 deletions
|
@ -709,7 +709,7 @@ public class RoutingHelper {
|
|||
}
|
||||
|
||||
|
||||
public String formatStreetName(String name, String ref, String destination) {
|
||||
public static String formatStreetName(String name, String ref, String destination) {
|
||||
//Original version returned:
|
||||
// 1. ref + " " + dest
|
||||
// 2. dest
|
||||
|
@ -733,7 +733,8 @@ public class RoutingHelper {
|
|||
if (formattedStreetName.length() > 0) {
|
||||
formattedStreetName = formattedStreetName + " ";
|
||||
}
|
||||
formattedStreetName = formattedStreetName + app.getString(R.string.towards) + " " + destination;
|
||||
//formattedStreetName = formattedStreetName + app.getString(R.string.towards) + " " + destination;
|
||||
formattedStreetName = formattedStreetName + " " + destination;
|
||||
}
|
||||
return formattedStreetName;
|
||||
|
||||
|
|
Loading…
Reference in a new issue