From 93e150e52591c7211306a40a42bc0b1ee9005dd7 Mon Sep 17 00:00:00 2001 From: Bananeweizen Date: Sun, 18 May 2014 11:15:29 +0200 Subject: 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) --- main/src/cgeo/geocaching/WaypointPopupFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/src/cgeo/geocaching/WaypointPopupFragment.java') 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(); -- cgit v1.1