aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuel Tardieu <sam@rfc1149.net>2013-09-15 14:47:49 +0200
committerSamuel Tardieu <sam@rfc1149.net>2013-09-15 14:47:49 +0200
commitc12ba5eb9ed6606defb4e3839d8ba009f6d996ff (patch)
treed8138605544f4abf40fa09045489822326934c2d
parent60836c9e3ed719569544993e98ad1864b319827c (diff)
downloadcgeo-c12ba5eb9ed6606defb4e3839d8ba009f6d996ff.zip
cgeo-c12ba5eb9ed6606defb4e3839d8ba009f6d996ff.tar.gz
cgeo-c12ba5eb9ed6606defb4e3839d8ba009f6d996ff.tar.bz2
refactoring: add missing final
-rw-r--r--main/src/cgeo/geocaching/Geocache.java2
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();