Index: applications/editors/josm/plugins/mapillary/.idea/codeStyleSettings.xml
===================================================================
--- applications/editors/josm/plugins/mapillary/.idea/codeStyleSettings.xml	(revision 32571)
+++ applications/editors/josm/plugins/mapillary/.idea/codeStyleSettings.xml	(revision 32572)
@@ -29,4 +29,7 @@
         <option name="JD_PRESERVE_LINE_FEEDS" value="true" />
         <option name="WRAP_COMMENTS" value="true" />
+        <MarkdownNavigatorCodeStyleSettings>
+          <option name="RIGHT_MARGIN" value="120" />
+        </MarkdownNavigatorCodeStyleSettings>
         <XML>
           <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryImage.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryImage.java	(revision 32571)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/MapillaryImage.java	(revision 32572)
@@ -28,7 +28,7 @@
    * Main constructor of the class MapillaryImage
    *
-   * @param key  The unique identifier of the image.
-   * @param latLon  The latitude and longitude where it is positioned.
-   * @param ca  The direction of the images in degrees, meaning 0 north.
+   * @param key The unique identifier of the image.
+   * @param latLon The latitude and longitude where it is positioned.
+   * @param ca The direction of the images in degrees, meaning 0 north.
    */
   public MapillaryImage(final String key, final LatLon latLon, final double ca) {
@@ -50,6 +50,5 @@
    * Sets the location of the image.
    *
-   * @param location
-   *          A {@code String} object containing the place where the image was taken.
+   * @param location A {@code String} object containing the place where the image was taken.
    */
   public void setLocation(String location) {
@@ -69,6 +68,5 @@
    * Adds a new sign to the set of signs.
    *
-   * @param sign
-   *          A {@code String} that identifies the type of sign.
+   * @param sign A {@code String} that identifies the type of sign.
    */
   public void addSign(String sign) {
@@ -88,6 +86,5 @@
    * Sets the username of the person who took the image.
    *
-   * @param user
-   *          A {@code String} containing the username of the person who took the image.
+   * @param user A {@code String} containing the username of the person who took the image.
    */
   public void setUser(String user) {
@@ -98,6 +95,5 @@
    * Returns the username of the person who took the picture.
    *
-   * @return A {@code String} containing the username of the person who took the
-   *         picture.
+   * @return A {@code String} containing the username of the person who took the picture.
    */
   public String getUser() {
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/mode/SelectMode.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/mode/SelectMode.java	(revision 32571)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/mode/SelectMode.java	(revision 32572)
@@ -115,5 +115,4 @@
         LatLon from = Main.map.mapView.getLatLon(this.start.getX(), this.start.getY());
         for (MapillaryAbstractImage img : this.data.getMultiSelectedImages()) {
-
           img.move(to.getX() - from.getX(), to.getY() - from.getY());
         }
