diff options
-rw-r--r-- | main/src/cgeo/geocaching/Geocache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/cgeo/geocaching/Geocache.java b/main/src/cgeo/geocaching/Geocache.java index 1fb1e0c..912d1be 100644 --- a/main/src/cgeo/geocaching/Geocache.java +++ b/main/src/cgeo/geocaching/Geocache.java @@ -1748,7 +1748,7 @@ public class Geocache implements ICache, IWaypoint { return StaticMapsProvider.hasStaticMap(this); } - public static Predicate<Geocache> hasStaticMap = new Predicate<Geocache>() { + public static final Predicate<Geocache> hasStaticMap = new Predicate<Geocache>() { @Override public boolean evaluate(final Geocache cache) { return cache.hasStaticMap(); |