fix for now

This commit is contained in:
sonora 2016-08-05 10:19:11 +02:00
parent cba84a4e77
commit 5a3fc1b0df

View file

@ -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;