diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2013-05-25 11:22:30 +0200 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2013-05-25 11:24:49 +0200 |
| commit | 9fed8d3446c0fd34df1b73e258c22bf97ecf684b (patch) | |
| tree | abef3a1f9cf8bfcb9c051873dc809075d002ea99 /main/src/cgeo/geocaching/Geocache.java | |
| parent | f97abf9389c3dfa292bfcff89e9a99ed7aab5a1f (diff) | |
| download | cgeo-9fed8d3446c0fd34df1b73e258c22bf97ecf684b.zip cgeo-9fed8d3446c0fd34df1b73e258c22bf97ecf684b.tar.gz cgeo-9fed8d3446c0fd34df1b73e258c22bf97ecf684b.tar.bz2 | |
fix #2725: Circles on the map only around physical stages
Diffstat (limited to 'main/src/cgeo/geocaching/Geocache.java')
| -rw-r--r-- | main/src/cgeo/geocaching/Geocache.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/main/src/cgeo/geocaching/Geocache.java b/main/src/cgeo/geocaching/Geocache.java index c585726..5286d1c 100644 --- a/main/src/cgeo/geocaching/Geocache.java +++ b/main/src/cgeo/geocaching/Geocache.java @@ -833,8 +833,7 @@ public class Geocache implements ICache, IWaypoint { } public boolean isVirtual() { - return CacheType.VIRTUAL == cacheType || CacheType.WEBCAM == cacheType - || CacheType.EARTH == cacheType; + return cacheType.isVirtual(); } public boolean showSize() { |
