diff options
Diffstat (limited to 'main/src/cgeo/geocaching/apps/cache/navi/InternalMap.java')
| -rw-r--r-- | main/src/cgeo/geocaching/apps/cache/navi/InternalMap.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/main/src/cgeo/geocaching/apps/cache/navi/InternalMap.java b/main/src/cgeo/geocaching/apps/cache/navi/InternalMap.java index 2f05459..f1e03ed 100644 --- a/main/src/cgeo/geocaching/apps/cache/navi/InternalMap.java +++ b/main/src/cgeo/geocaching/apps/cache/navi/InternalMap.java @@ -1,6 +1,5 @@ package cgeo.geocaching.apps.cache.navi; -import cgeo.geocaching.IGeoData; import cgeo.geocaching.R; import cgeo.geocaching.cgCache; import cgeo.geocaching.cgWaypoint; @@ -9,7 +8,6 @@ import cgeo.geocaching.geopoint.Geopoint; import cgeo.geocaching.maps.CGeoMap; import android.app.Activity; -import android.content.Context; class InternalMap extends AbstractNavigationApp { @@ -18,8 +16,7 @@ class InternalMap extends AbstractNavigationApp { } @Override - public boolean invoke(IGeoData geo, Activity activity, cgCache cache, - cgWaypoint waypoint, final Geopoint coords) { + public boolean invoke(Activity activity, cgCache cache, cgWaypoint waypoint, final Geopoint coords) { if (cache != null) { CGeoMap.startActivityGeoCode(activity, cache.getGeocode()); // may need some code from CGeoMap.startActivitySearch(activity, search, cache != null ? cache.getGeocode() : null, true); @@ -35,7 +32,7 @@ class InternalMap extends AbstractNavigationApp { } @Override - public boolean isInstalled(Context context) { + public boolean isInstalled() { return true; } |
