diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2013-08-31 07:40:20 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2013-08-31 07:40:20 +0200 |
| commit | 2530e8273b67788bc3d6c647cb5047789a48d49c (patch) | |
| tree | e8521f76aa7499496260086831a89db7acbdaf52 /main/src/cgeo/geocaching/enumerations | |
| parent | db3cf9e6cc77a3fb2ee5e073335e7851d9e2dce9 (diff) | |
| download | cgeo-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.java | 3 |
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 |
