diff options
| author | rsudev <rasch@munin-soft.de> | 2011-08-26 20:51:53 +0200 |
|---|---|---|
| committer | rsudev <rasch@munin-soft.de> | 2011-08-26 20:51:53 +0200 |
| commit | 587a3e76fd02a2f3bb807c607691429bfd1b977b (patch) | |
| tree | db193a1613f5b5897fa4ae8fb301a733ebad1f1f | |
| parent | fa124eb50eb41d9598dcae0549178d784c650105 (diff) | |
| download | cgeo-587a3e76fd02a2f3bb807c607691429bfd1b977b.zip cgeo-587a3e76fd02a2f3bb807c607691429bfd1b977b.tar.gz cgeo-587a3e76fd02a2f3bb807c607691429bfd1b977b.tar.bz2 | |
Removed code that was only commented out in fix for #15
| -rw-r--r-- | src/cgeo/geocaching/googlemaps/googleMapFactory.java | 6 | ||||
| -rw-r--r-- | src/cgeo/geocaching/mapinterfaces/MapFactory.java | 2 | ||||
| -rw-r--r-- | src/cgeo/geocaching/mapsforge/mfMapFactory.java | 6 |
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); |
