aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/cgTrackable.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/cgTrackable.java')
-rw-r--r--main/src/cgeo/geocaching/cgTrackable.java21
1 files changed, 0 insertions, 21 deletions
diff --git a/main/src/cgeo/geocaching/cgTrackable.java b/main/src/cgeo/geocaching/cgTrackable.java
index 5cde2f5..c37d411 100644
--- a/main/src/cgeo/geocaching/cgTrackable.java
+++ b/main/src/cgeo/geocaching/cgTrackable.java
@@ -1,7 +1,5 @@
package cgeo.geocaching;
-import cgeo.geocaching.enumerations.StatusCode;
-
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
@@ -13,7 +11,6 @@ public class cgTrackable implements ILogable {
static final public int SPOTTED_UNKNOWN = 3;
static final public int SPOTTED_OWNER = 4;
- private StatusCode errorRetrieve = null;
private String error = "";
private String guid = "";
private String geocode = "";
@@ -37,28 +34,10 @@ public class cgTrackable implements ILogable {
return "http://coord.info/" + geocode.toUpperCase();
}
- public StatusCode getErrorRetrieve() {
- return errorRetrieve;
- }
-
- /*
- * unused
- * public void setErrorRetrieve(StatusCode errorRetrieve) {
- * this.errorRetrieve = errorRetrieve;
- * }
- */
-
public String getError() {
return error;
}
- /*
- * Unused
- * public void setError(String error) {
- * this.error = error;
- * }
- */
-
public String getGuid() {
return guid;
}