aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/Geocache.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/Geocache.java')
-rw-r--r--main/src/cgeo/geocaching/Geocache.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/main/src/cgeo/geocaching/Geocache.java b/main/src/cgeo/geocaching/Geocache.java
index ac1c9b1..8f5b13c 100644
--- a/main/src/cgeo/geocaching/Geocache.java
+++ b/main/src/cgeo/geocaching/Geocache.java
@@ -12,7 +12,6 @@ import cgeo.geocaching.connector.gc.GCConnector;
import cgeo.geocaching.connector.gc.GCConstants;
import cgeo.geocaching.connector.gc.Tile;
import cgeo.geocaching.enumerations.CacheAttribute;
-import cgeo.geocaching.enumerations.CacheRealm;
import cgeo.geocaching.enumerations.CacheSize;
import cgeo.geocaching.enumerations.CacheType;
import cgeo.geocaching.enumerations.LoadFlags;
@@ -571,10 +570,6 @@ public class Geocache implements ICache, IWaypoint {
return getConnector().supportsOwnCoordinates();
}
- public CacheRealm getCacheRealm() {
- return getConnector().getCacheRealm();
- }
-
public ILoggingManager getLoggingManager(Activity activity) {
return getConnector().getLoggingManager(activity, this);
}
@@ -1763,4 +1758,8 @@ public class Geocache implements ICache, IWaypoint {
}
return false;
}
+
+ public int getMapMarkerId() {
+ return getConnector().getCacheMapMarkerId(isDisabled() || isArchived());
+ }
}