From 9fed8d3446c0fd34df1b73e258c22bf97ecf684b Mon Sep 17 00:00:00 2001 From: Bananeweizen Date: Sat, 25 May 2013 11:22:30 +0200 Subject: fix #2725: Circles on the map only around physical stages --- main/src/cgeo/geocaching/Geocache.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'main/src/cgeo/geocaching/Geocache.java') 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() { -- cgit v1.1