diff options
author | Samuel Tardieu <sam@rfc1149.net> | 2013-09-15 14:47:49 +0200 |
---|---|---|
committer | Samuel Tardieu <sam@rfc1149.net> | 2013-09-15 14:47:49 +0200 |
commit | c12ba5eb9ed6606defb4e3839d8ba009f6d996ff (patch) | |
tree | d8138605544f4abf40fa09045489822326934c2d | |
parent | 60836c9e3ed719569544993e98ad1864b319827c (diff) | |
download | cgeo-c12ba5eb9ed6606defb4e3839d8ba009f6d996ff.zip cgeo-c12ba5eb9ed6606defb4e3839d8ba009f6d996ff.tar.gz cgeo-c12ba5eb9ed6606defb4e3839d8ba009f6d996ff.tar.bz2 |
refactoring: add missing final
-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(); |