aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/cgeo/geocaching/googlemaps/googleMapFactory.java6
-rw-r--r--src/cgeo/geocaching/mapinterfaces/MapFactory.java2
-rw-r--r--src/cgeo/geocaching/mapsforge/mfMapFactory.java6
3 files changed, 0 insertions, 14 deletions
diff --git a/src/cgeo/geocaching/googlemaps/googleMapFactory.java b/src/cgeo/geocaching/googlemaps/googleMapFactory.java
index 9f44576..ba62737 100644
--- a/src/cgeo/geocaching/googlemaps/googleMapFactory.java
+++ b/src/cgeo/geocaching/googlemaps/googleMapFactory.java
@@ -33,12 +33,6 @@ public class googleMapFactory implements MapFactory{
return new googleGeoPoint(latE6, lonE6);
}
-// @Override
-// public OverlayImpl getOverlayBaseWrapper(OverlayBase ovlIn) {
-// googleOverlay baseOvl = new googleOverlay(ovlIn);
-// return baseOvl;
-// }
-
@Override
public CacheOverlayItemImpl getCacheOverlayItem(cgCoord coordinate, String type) {
googleCacheOverlayItem baseItem = new googleCacheOverlayItem(coordinate, type);
diff --git a/src/cgeo/geocaching/mapinterfaces/MapFactory.java b/src/cgeo/geocaching/mapinterfaces/MapFactory.java
index 1950e9a..4348c40 100644
--- a/src/cgeo/geocaching/mapinterfaces/MapFactory.java
+++ b/src/cgeo/geocaching/mapinterfaces/MapFactory.java
@@ -21,8 +21,6 @@ public interface MapFactory {
public GeoPointImpl getGeoPointBase(int latE6, int lonE6);
-// public OverlayImpl getOverlayBaseWrapper(OverlayBase ovlIn);
-
CacheOverlayItemImpl getCacheOverlayItem(cgCoord coordinate, String type);
public UserOverlayItemImpl getUserOverlayItemBase(Context context,
diff --git a/src/cgeo/geocaching/mapsforge/mfMapFactory.java b/src/cgeo/geocaching/mapsforge/mfMapFactory.java
index f72f12f..00204dd 100644
--- a/src/cgeo/geocaching/mapsforge/mfMapFactory.java
+++ b/src/cgeo/geocaching/mapsforge/mfMapFactory.java
@@ -32,12 +32,6 @@ public class mfMapFactory implements MapFactory{
return new mfGeoPoint(latE6, lonE6);
}
-// @Override
-// public OverlayImpl getOverlayBaseWrapper(OverlayBase ovlIn) {
-// mfOverlay baseOvl = new mfOverlay(ovlIn);
-// return baseOvl;
-// }
-
@Override
public CacheOverlayItemImpl getCacheOverlayItem(cgCoord coordinate, String type) {
mfCacheOverlayItem baseItem = new mfCacheOverlayItem(coordinate, type);