Index: trunk/src/org/openstreetmap/josm/gui/progress/swing/ProgressMonitorExecutor.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/progress/swing/ProgressMonitorExecutor.java	(revision 19138)
+++ trunk/src/org/openstreetmap/josm/gui/progress/swing/ProgressMonitorExecutor.java	(revision 19139)
@@ -15,5 +15,5 @@
 /**
  * Executor that displays the progress monitor to the user.
- *
+ * <p>
  * Similar to Executors.newSingleThreadExecutor(), but displays the
  * progress monitor whenever a new task is executed.
@@ -29,5 +29,5 @@
     public ProgressMonitorExecutor(final String nameFormat, final int threadPriority) {
         super(1, 1, 0L, TimeUnit.MILLISECONDS,
-                new LinkedBlockingQueue<Runnable>(),
+                new LinkedBlockingQueue<>(),
                 Utils.newThreadFactory(nameFormat, threadPriority));
     }
Index: trunk/src/org/openstreetmap/josm/tools/PlatformHook.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/PlatformHook.java	(revision 19138)
+++ trunk/src/org/openstreetmap/josm/tools/PlatformHook.java	(revision 19139)
@@ -404,5 +404,6 @@
         if (missingArguments.length() > 0) {
             final String args = missingArguments.toString();
-            messages.add(tr("Missing JVM Arguments:<br>{0}<br>These arguments should be added in the command line or start script before the -jar parameter.", args));
+            messages.add(tr("Missing JVM Arguments:<br>{0}<br>" +
+                    "These arguments should be added in the command line or start script before the -jar parameter.", args));
         }
         if (!messages.isEmpty()) {
