Index: trunk/src/org/openstreetmap/josm/data/cache/HostLimitQueue.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/cache/HostLimitQueue.java	(revision 11444)
+++ trunk/src/org/openstreetmap/josm/data/cache/HostLimitQueue.java	(revision 11445)
@@ -117,7 +117,6 @@
      * See: http://stackoverflow.com/questions/9622599/java-threadpoolexecutor-strategy-direct-handoff-with-queue#
      *
-     * @param executor
+     * @param executor executor for which this queue works
      */
-
     public void setExecutor(ThreadPoolExecutor executor) {
         this.executor = executor;
@@ -127,8 +126,6 @@
 
     @Override
-    public boolean offer(Runnable e)
-    {
-        if (super.offer(e) == false)
-        {
+    public boolean offer(Runnable e) {
+        if (!super.offer(e)) {
             return false;
         }
@@ -139,6 +136,5 @@
             int currentPoolSize = executor.getPoolSize();
             if (currentPoolSize < maximumPoolSize
-                    && currentPoolSize >= corePoolSize)
-            {
+                    && currentPoolSize >= corePoolSize) {
                 executor.setCorePoolSize(currentPoolSize + 1);
                 executor.setCorePoolSize(corePoolSize);
