aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/enumerations
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2013-08-31 07:40:20 +0200
committerBananeweizen <bananeweizen@gmx.de>2013-08-31 07:40:20 +0200
commit2530e8273b67788bc3d6c647cb5047789a48d49c (patch)
treee8521f76aa7499496260086831a89db7acbdaf52 /main/src/cgeo/geocaching/enumerations
parentdb3cf9e6cc77a3fb2ee5e073335e7851d9e2dce9 (diff)
downloadcgeo-2530e8273b67788bc3d6c647cb5047789a48d49c.zip
cgeo-2530e8273b67788bc3d6c647cb5047789a48d49c.tar.gz
cgeo-2530e8273b67788bc3d6c647cb5047789a48d49c.tar.bz2
fix #3222: GPS exhibit not recognized as event cache
Diffstat (limited to 'main/src/cgeo/geocaching/enumerations')
-rw-r--r--main/src/cgeo/geocaching/enumerations/CacheType.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/enumerations/CacheType.java b/main/src/cgeo/geocaching/enumerations/CacheType.java
index 6c63cac..31eb68a 100644
--- a/main/src/cgeo/geocaching/enumerations/CacheType.java
+++ b/main/src/cgeo/geocaching/enumerations/CacheType.java
@@ -89,8 +89,7 @@ public enum CacheType {
}
public boolean isEvent() {
- return CacheType.EVENT == this || CacheType.MEGA_EVENT == this || CacheType.CITO == this ||
- CacheType.LOSTANDFOUND == this || CacheType.BLOCK_PARTY == this;
+ return EVENT == this || MEGA_EVENT == this || CITO == this || LOSTANDFOUND == this || BLOCK_PARTY == this || GPS_EXHIBIT == this;
}
@Override