aboutsummaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
authorBananeweizen <bananeweizen@gmx.de>2013-08-31 07:43:02 +0200
committerBananeweizen <bananeweizen@gmx.de>2013-08-31 07:43:02 +0200
commit4f564dd08f8226f7fbcc75b3408fc147a7f97c63 (patch)
tree6dfa0e346c8d28ec0fe6cd0c709a98c1a6ff8584 /main
parente6e45ecf25d28cc1e6afe85125023eb51368169a (diff)
parent2530e8273b67788bc3d6c647cb5047789a48d49c (diff)
downloadcgeo-4f564dd08f8226f7fbcc75b3408fc147a7f97c63.zip
cgeo-4f564dd08f8226f7fbcc75b3408fc147a7f97c63.tar.gz
cgeo-4f564dd08f8226f7fbcc75b3408fc147a7f97c63.tar.bz2
Merge branch 'release'
Diffstat (limited to 'main')
-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