aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/src/cgeo/geocaching/connector/gc/GCParser.java11
1 files changed, 0 insertions, 11 deletions
diff --git a/main/src/cgeo/geocaching/connector/gc/GCParser.java b/main/src/cgeo/geocaching/connector/gc/GCParser.java
index 60fb8e1..56d434d 100644
--- a/main/src/cgeo/geocaching/connector/gc/GCParser.java
+++ b/main/src/cgeo/geocaching/connector/gc/GCParser.java
@@ -486,17 +486,6 @@ public abstract class GCParser {
// cache found
cache.setFound(TextUtils.matches(page, GCConstants.PATTERN_FOUND) || TextUtils.matches(page, GCConstants.PATTERN_FOUND_ALTERNATIVE));
- // cache found date
- try {
- final String foundDateString = TextUtils.getMatch(page, GCConstants.PATTERN_FOUND_DATE, true, null);
- if (StringUtils.isNotBlank(foundDateString)) {
- cache.setVisitedDate(GCLogin.parseGcCustomDate(foundDateString).getTime());
- }
- } catch (final ParseException e) {
- // failed to parse cache found date
- Log.w("GCParser.parseCache: Failed to parse cache found date");
- }
-
// cache type
cache.setType(CacheType.getByPattern(TextUtils.getMatch(page, GCConstants.PATTERN_TYPE, true, cache.getType().id)));