Index: /trunk/src/org/openstreetmap/josm/gui/MainApplication.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/MainApplication.java	(revision 10244)
+++ /trunk/src/org/openstreetmap/josm/gui/MainApplication.java	(revision 10245)
@@ -573,4 +573,5 @@
         if ("auto".equals(Main.pref.get("prefer.ipv6", "auto"))) {
              new Thread(new Runnable() { /* this may take some time (DNS, Connect) */
+                @Override
                 public void run() {
                     boolean hasv6 = false;
Index: /trunk/src/org/openstreetmap/josm/gui/dialogs/layer/LayerVisibilityAction.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/dialogs/layer/LayerVisibilityAction.java	(revision 10244)
+++ /trunk/src/org/openstreetmap/josm/gui/dialogs/layer/LayerVisibilityAction.java	(revision 10245)
@@ -39,5 +39,5 @@
  */
 public final class LayerVisibilityAction extends AbstractAction implements IEnabledStateUpdating, LayerAction {
-    protected static final int SLIDER_STEPS = 100;
+    private static final int SLIDER_STEPS = 100;
     private static final double MAX_SHARPNESS_FACTOR = 2;
     private static final double MAX_COLORFUL_FACTOR = 2;
Index: /trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java	(revision 10244)
+++ /trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java	(revision 10245)
@@ -119,5 +119,5 @@
         CONTAINS;
 
-        protected static final Set<Op> NEGATED_OPS = EnumSet.of(NEQ, NREGEX);
+        static final Set<Op> NEGATED_OPS = EnumSet.of(NEQ, NREGEX);
 
         /**
Index: /trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java	(revision 10244)
+++ /trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java	(revision 10245)
@@ -80,5 +80,5 @@
      * Deprecated plugins that are removed on start
      */
-    protected static final Collection<DeprecatedPlugin> DEPRECATED_PLUGINS;
+    static final Collection<DeprecatedPlugin> DEPRECATED_PLUGINS;
     static {
         String inCore = tr("integrated into main program");
