diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2014-05-18 11:15:29 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2014-05-18 11:15:29 +0200 |
| commit | 93e150e52591c7211306a40a42bc0b1ee9005dd7 (patch) | |
| tree | ed3613c9a8f312ba1755bb24ffbde5a5f839b5d8 /main/src/cgeo/geocaching/WaypointPopupFragment.java | |
| parent | b48a214852f551c7b8b6f44cf9191a725ff25ccd (diff) | |
| download | cgeo-93e150e52591c7211306a40a42bc0b1ee9005dd7.zip cgeo-93e150e52591c7211306a40a42bc0b1ee9005dd7.tar.gz cgeo-93e150e52591c7211306a40a42bc0b1ee9005dd7.tar.bz2 | |
multiple code cleanups
* unused imports
* remove author comment
* restrict access
* fix StaticMapsActivity code generation cycle (it should not contain
references to classes which are generated by the annotation processor
from itself)
Diffstat (limited to 'main/src/cgeo/geocaching/WaypointPopupFragment.java')
| -rw-r--r-- | main/src/cgeo/geocaching/WaypointPopupFragment.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/WaypointPopupFragment.java b/main/src/cgeo/geocaching/WaypointPopupFragment.java index 14daada..03d95e5 100644 --- a/main/src/cgeo/geocaching/WaypointPopupFragment.java +++ b/main/src/cgeo/geocaching/WaypointPopupFragment.java @@ -48,7 +48,7 @@ public class WaypointPopupFragment extends AbstractDialogFragment { } @Override - public void onUpdateGeoData(IGeoData geo) { + protected void onUpdateGeoData(IGeoData geo) { if (geo.getCoords() != null && waypoint != null && waypoint.getCoords() != null) { waypointDistance.setText(Units.getDistanceFromKilometers(geo.getCoords().distanceTo(waypoint.getCoords()))); waypointDistance.bringToFront(); |
