Index: trunk/src/org/openstreetmap/josm/actions/search/SearchAction.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/search/SearchAction.java	(revision 9078)
+++ trunk/src/org/openstreetmap/josm/actions/search/SearchAction.java	(revision 9079)
@@ -55,5 +55,4 @@
 import org.openstreetmap.josm.tools.Shortcut;
 import org.openstreetmap.josm.tools.Utils;
-
 
 public class SearchAction extends JosmAction implements ParameterizedAction {
Index: trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java	(revision 9078)
+++ trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java	(revision 9079)
@@ -476,6 +476,6 @@
      * @param text The text to write on the area.
      */
-    protected void drawArea(OsmPrimitive osm, Path2D.Double path, Color color, MapImage fillImage, Float extent, Path2D.Double pfClip, boolean unclosedHighlight,
-            boolean disabled, TextElement text) {
+    protected void drawArea(OsmPrimitive osm, Path2D.Double path, Color color, MapImage fillImage, Float extent, Path2D.Double pfClip,
+            boolean unclosedHighlight, boolean disabled, TextElement text) {
 
         Shape area = path.createTransformedShape(nc.getAffineTransform());
@@ -1657,5 +1657,5 @@
         if (dx1 * dx2 + dy1 * dy2 < 0) {
             double len = Math.sqrt(dx1 * dx1 + dy1 * dy1);
-            double dxm = - dy1 * extent / len;
+            double dxm = -dy1 * extent / len;
             double dym = dx1 * extent / len;
             if (dx1 * dy2 - dx2 * dy1 < 0) {
Index: trunk/src/org/openstreetmap/josm/data/preferences/ParametrizedEnumProperty.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/preferences/ParametrizedEnumProperty.java	(revision 9078)
+++ trunk/src/org/openstreetmap/josm/data/preferences/ParametrizedEnumProperty.java	(revision 9079)
@@ -5,5 +5,4 @@
 
 public abstract class ParametrizedEnumProperty<T extends Enum<T>> {
-
 
     private final T defaultValue;
@@ -28,5 +27,3 @@
         return Enum.valueOf(enumClass, s);
     }
-
-
 }
Index: trunk/src/org/openstreetmap/josm/data/validation/Severity.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/validation/Severity.java	(revision 9078)
+++ trunk/src/org/openstreetmap/josm/data/validation/Severity.java	(revision 9079)
@@ -66,5 +66,3 @@
         return color;
     }
-
-
 }
Index: trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/UrlBasedQueryPanel.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/UrlBasedQueryPanel.java	(revision 9078)
+++ trunk/src/org/openstreetmap/josm/gui/dialogs/changeset/query/UrlBasedQueryPanel.java	(revision 9079)
@@ -28,5 +28,4 @@
 import org.openstreetmap.josm.io.OsmApi;
 import org.openstreetmap.josm.tools.ImageProvider;
-
 
 public class UrlBasedQueryPanel extends JPanel {
Index: trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ImageDisplay.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ImageDisplay.java	(revision 9078)
+++ trunk/src/org/openstreetmap/josm/gui/layer/geoimage/ImageDisplay.java	(revision 9079)
@@ -28,5 +28,4 @@
 import org.openstreetmap.josm.Main;
 import org.openstreetmap.josm.tools.ExifReader;
-
 
 public class ImageDisplay extends JComponent {
Index: trunk/src/org/openstreetmap/josm/io/MissingOAuthAccessTokenException.java
===================================================================
--- trunk/src/org/openstreetmap/josm/io/MissingOAuthAccessTokenException.java	(revision 9078)
+++ trunk/src/org/openstreetmap/josm/io/MissingOAuthAccessTokenException.java	(revision 9079)
@@ -2,18 +2,36 @@
 package org.openstreetmap.josm.io;
 
+public class MissingOAuthAccessTokenException extends OsmTransferException {
 
-public class MissingOAuthAccessTokenException extends OsmTransferException {
+    /**
+     * Constructs a new {@code MissingOAuthAccessTokenException}.
+     */
     public MissingOAuthAccessTokenException() {
         super();
     }
 
+    /**
+     * Constructs a new {@code OsmTransferException} with the specified detail message and cause.
+     * @param message The detail message (which is saved for later retrieval by the {@link #getMessage} method)
+     * @param cause   The cause (which is saved for later retrieval by the {@link #getCause} method).
+     *                A null value is permitted, and indicates that the cause is nonexistent or unknown.
+     */
     public MissingOAuthAccessTokenException(String message, Throwable cause) {
         super(message, cause);
     }
 
+    /**
+     * Constructs a new {@code OsmTransferException} with the specified detail message.
+     * @param message The detail message (which is saved for later retrieval by the {@link #getMessage} method)
+     */
     public MissingOAuthAccessTokenException(String message) {
         super(message);
     }
 
+    /**
+     * Constructs a new {@code OsmTransferException} with the specified cause.
+     * @param cause   The cause (which is saved for later retrieval by the {@link #getCause} method).
+     *                A null value is permitted, and indicates that the cause is nonexistent or unknown.
+     */
     public MissingOAuthAccessTokenException(Throwable cause) {
         super(cause);
Index: trunk/src/org/openstreetmap/josm/tools/template_engine/CompoundTemplateEntry.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/template_engine/CompoundTemplateEntry.java	(revision 9078)
+++ trunk/src/org/openstreetmap/josm/tools/template_engine/CompoundTemplateEntry.java	(revision 9079)
@@ -1,5 +1,4 @@
 // License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.tools.template_engine;
-
 
 public final class CompoundTemplateEntry implements TemplateEntry {
Index: trunk/src/org/openstreetmap/josm/tools/template_engine/Condition.java
===================================================================
--- trunk/src/org/openstreetmap/josm/tools/template_engine/Condition.java	(revision 9078)
+++ trunk/src/org/openstreetmap/josm/tools/template_engine/Condition.java	(revision 9079)
@@ -4,5 +4,4 @@
 import java.util.ArrayList;
 import java.util.List;
-
 
 public class Condition implements TemplateEntry {
