diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2012-08-26 14:01:50 +0200 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2012-08-26 14:01:50 +0200 |
commit | e989666a734d4f36a20f70ed6b83339c2b0b4b54 (patch) | |
tree | d46d90af64a81da53824a949e05cc4be5c3cfbd1 /main/src/cgeo/geocaching/cgeoapplication.java | |
parent | 36d9c61be952cbfc6d62016bf1c6538b5db13f3d (diff) | |
download | cgeo-e989666a734d4f36a20f70ed6b83339c2b0b4b54.zip cgeo-e989666a734d4f36a20f70ed6b83339c2b0b4b54.tar.gz cgeo-e989666a734d4f36a20f70ed6b83339c2b0b4b54.tar.bz2 |
fix #1893: remove go4cache
Diffstat (limited to 'main/src/cgeo/geocaching/cgeoapplication.java')
-rw-r--r-- | main/src/cgeo/geocaching/cgeoapplication.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/main/src/cgeo/geocaching/cgeoapplication.java b/main/src/cgeo/geocaching/cgeoapplication.java index 137fe30..9c63555 100644 --- a/main/src/cgeo/geocaching/cgeoapplication.java +++ b/main/src/cgeo/geocaching/cgeoapplication.java @@ -36,7 +36,6 @@ import java.util.concurrent.atomic.AtomicBoolean; public class cgeoapplication extends Application { final private cgData storage = new cgData(); - private String action = null; private volatile GeoDataProvider geo; private volatile DirectionProvider dir; public boolean firstRun = true; // c:geo is just launched @@ -368,25 +367,6 @@ public class cgeoapplication extends Application { return storage.loadWaypoint(id); } - /** - * set the current action to be reported to Go4Cache (if enabled in settings)<br> - * this might be either - * <ul> - * <li>geocode</li> - * <li>name of a cache</li> - * <li>action like twittering</li> - * </ul> - * - * @param action - */ - public void setAction(String action) { - this.action = action; - } - - public String getAction() { - return StringUtils.defaultString(action); - } - /** {@link cgData#saveLogOffline(String, Date, LogType, String)} */ public boolean saveLogOffline(String geocode, Date date, LogType logtype, String log) { return storage.saveLogOffline(geocode, date, logtype, log); |