Index: trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java	(revision 8285)
+++ trunk/src/org/openstreetmap/josm/data/cache/JCSCachedTileLoaderJob.java	(revision 8286)
@@ -57,5 +57,5 @@
      * maximum download threads that will be started
      */
-    public static IntegerProperty THREAD_LIMIT = new IntegerProperty("cache.jcs.max_threads", 10);
+    public static final IntegerProperty THREAD_LIMIT = new IntegerProperty("cache.jcs.max_threads", 10);
     private static Executor DOWNLOAD_JOB_DISPATCHER = new ThreadPoolExecutor(
             2, // we have a small queue, so threads will be quickly started (threads are started only, when queue is full)
Index: trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoader.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoader.java	(revision 8285)
+++ trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoader.java	(revision 8286)
@@ -32,5 +32,5 @@
     public static final String PREFERENCE_PREFIX   = "imagery.tms.cache.";
     // average tile size is about 20kb
-    public static IntegerProperty MAX_OBJECTS_ON_DISK = new IntegerProperty(PREFERENCE_PREFIX + "max_objects_disk", 25000); // 25000 is around 500MB under this assumptions
+    public static final IntegerProperty MAX_OBJECTS_ON_DISK = new IntegerProperty(PREFERENCE_PREFIX + "max_objects_disk", 25000); // 25000 is around 500MB under this assumptions
 
 
Index: trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoaderJob.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoaderJob.java	(revision 8285)
+++ trunk/src/org/openstreetmap/josm/data/imagery/TMSCachedTileLoaderJob.java	(revision 8286)
@@ -41,5 +41,5 @@
      * overrides the THREAD_LIMIT in superclass, as we want to have separate limit and pool for TMS
      */
-    public static IntegerProperty THREAD_LIMIT = new IntegerProperty("imagery.tms.tmsloader.maxjobs", 25);
+    public static final IntegerProperty THREAD_LIMIT = new IntegerProperty("imagery.tms.tmsloader.maxjobs", 25);
     /**
      * separate from JCS thread pool for TMS loader, so we can have different thread pools for default JCS
Index: trunk/src/org/openstreetmap/josm/gui/ImageryMenu.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/ImageryMenu.java	(revision 8285)
+++ trunk/src/org/openstreetmap/josm/gui/ImageryMenu.java	(revision 8286)
@@ -15,4 +15,5 @@
 import java.util.Iterator;
 import java.util.List;
+
 import javax.swing.Action;
 import javax.swing.JComponent;
@@ -22,4 +23,5 @@
 import javax.swing.event.MenuEvent;
 import javax.swing.event.MenuListener;
+
 import org.openstreetmap.josm.Main;
 import org.openstreetmap.josm.actions.AddImageryLayerAction;
@@ -49,5 +51,5 @@
      * (for the preferences). We don't want this in the imagery menu.
      */
-    public static Comparator<ImageryInfo> alphabeticImageryComparator = new Comparator<ImageryInfo>() {
+    public static final Comparator<ImageryInfo> alphabeticImageryComparator = new Comparator<ImageryInfo>() {
         @Override
         public int compare(ImageryInfo ii1, ImageryInfo ii2) {
Index: trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/ImageProvider.java	(revision 8285)
+++ trunk/src/org/openstreetmap/josm/tools/ImageProvider.java	(revision 8286)
@@ -145,5 +145,5 @@
      * @since 7132
      */
-    public static String PROP_TRANSPARENCY_FORCED = "josm.transparency.forced";
+    public static final String PROP_TRANSPARENCY_FORCED = "josm.transparency.forced";
 
     /**
@@ -151,5 +151,5 @@
      * @since 7132
      */
-    public static String PROP_TRANSPARENCY_COLOR = "josm.transparency.color";
+    public static final String PROP_TRANSPARENCY_COLOR = "josm.transparency.color";
 
     /** directories in which images are searched */
