Remove unnecessary changes

This commit is contained in:
Chumva 2019-03-21 16:37:55 +02:00
parent 9ec1b8c239
commit 84495e11f2

View file

@ -137,13 +137,13 @@ public class GeoIntentActivity extends OsmandListActivity {
}
settings.setMapLocationToShow(p.getLatitude(), p.getLongitude(),
settings.getLastKnownMapZoom(), pd); //$NON-NLS-1$
startMapActivityAndCloseCurrent();
} else {
Uri uri = intent.getData();
String searchString = p != null && p.isGeoAddress() ? p.getQuery() : uri.toString();
settings.setSearchRequestToShow(searchString);
startMapActivityAndCloseCurrent();
}
MapActivity.launchMapActivityMoveToTop(GeoIntentActivity.this);
GeoIntentActivity.this.finish();
} catch (Exception e) {
e.printStackTrace();
}
@ -151,11 +151,6 @@ public class GeoIntentActivity extends OsmandListActivity {
}
private void startMapActivityAndCloseCurrent() {
MapActivity.launchMapActivityMoveToTop(GeoIntentActivity.this);
GeoIntentActivity.this.finish();
}
@Override
protected void onStop() {
dismiss();