From 24a035dfb4bdf2e8415ecf77001234025b9fb862 Mon Sep 17 00:00:00 2001 From: Chumva Date: Mon, 4 Mar 2019 13:47:37 +0200 Subject: [PATCH] Rename updateDestinationStreetName --- .../osmand/plus/activities/ShowRouteInfoDialogFragment.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OsmAnd/src/net/osmand/plus/activities/ShowRouteInfoDialogFragment.java b/OsmAnd/src/net/osmand/plus/activities/ShowRouteInfoDialogFragment.java index 5d723c1f05..c26421420f 100644 --- a/OsmAnd/src/net/osmand/plus/activities/ShowRouteInfoDialogFragment.java +++ b/OsmAnd/src/net/osmand/plus/activities/ShowRouteInfoDialogFragment.java @@ -1067,7 +1067,7 @@ public class ShowRouteInfoDialogFragment extends BaseOsmAndFragment { } - protected void acquireStreetName(LatLon latLon) { + protected void updateDestinationStreetName(LatLon latLon) { GeocodingLookupService.AddressLookupRequest addressLookupRequest = new GeocodingLookupService.AddressLookupRequest(latLon, new GeocodingLookupService.OnAddressLookupResult() { @Override public void geocodingDone(String address) { @@ -1238,7 +1238,7 @@ public class ShowRouteInfoDialogFragment extends BaseOsmAndFragment { buildDescriptionView(new SpannableString(destinationStreetStr), llText, 4, 4); } } else { - acquireStreetName(location); + updateDestinationStreetName(location); } }