Index: trunk/src/org/openstreetmap/josm/gui/download/DownloadSourceSizingPolicy.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/download/DownloadSourceSizingPolicy.java	(revision 12706)
+++ trunk/src/org/openstreetmap/josm/gui/download/DownloadSourceSizingPolicy.java	(revision 12707)
@@ -16,5 +16,5 @@
      * @return The height the component should have.
      */
-    public int getComponentHeight();
+    int getComponentHeight();
 
     /**
@@ -22,5 +22,5 @@
      * @return <code>true</code> if the height should be adjustable
      */
-    public boolean isHeightAdjustable();
+    boolean isHeightAdjustable();
 
     /**
@@ -28,5 +28,5 @@
      * @param height the height in pixel
      */
-    public default void storeHeight(int height) {
+    default void storeHeight(int height) {
         throw new UnsupportedOperationException(
                 "Setting the height is not supported for " + this.getClass().getCanonicalName());
@@ -37,5 +37,5 @@
      * @author Michael Zangl
      */
-    public class FixedDownloadSourceSizePolicy implements DownloadSourceSizingPolicy {
+    class FixedDownloadSourceSizePolicy implements DownloadSourceSizingPolicy {
         private final Component base;
 
@@ -64,5 +64,5 @@
      * Mind that using a preferred component size is not possible in this case, since the preference entry needs to have a onstant default value.
      */
-    public class AdjustableDownloadSizePolicy implements DownloadSourceSizingPolicy {
+    class AdjustableDownloadSizePolicy implements DownloadSourceSizingPolicy {
 
         private final AbstractProperty<Integer> preference;
Index: trunk/src/org/openstreetmap/josm/gui/download/OverpassDownloadSource.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/download/OverpassDownloadSource.java	(revision 12706)
+++ trunk/src/org/openstreetmap/josm/gui/download/OverpassDownloadSource.java	(revision 12707)
@@ -47,5 +47,4 @@
  */
 public class OverpassDownloadSource implements DownloadSource<OverpassDownloadSource.OverpassDownloadData> {
-
 
     @Override
Index: trunk/src/org/openstreetmap/josm/gui/preferences/remotecontrol/RemoteControlPreference.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/preferences/remotecontrol/RemoteControlPreference.java	(revision 12706)
+++ trunk/src/org/openstreetmap/josm/gui/preferences/remotecontrol/RemoteControlPreference.java	(revision 12707)
@@ -177,5 +177,6 @@
             if (installCertificate != null && uninstallCertificate != null) {
                 // Install certificate button is enabled if HTTPS is also enabled
-                installCertificate.setEnabled(enableRemoteControl.isSelected() && enableHttpsSupport.isSelected() && RemoteControl.supportsHttps());
+                installCertificate.setEnabled(enableRemoteControl.isSelected()
+                        && enableHttpsSupport.isSelected() && RemoteControl.supportsHttps());
                 // Uninstall certificate button is always enabled
                 uninstallCertificate.setEnabled(RemoteControl.supportsHttps());
