Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/HyperlinkLabel.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/HyperlinkLabel.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/HyperlinkLabel.java	(revision 32653)
@@ -110,5 +110,5 @@
     private final JMenuItem edit;
 
-    public LinkPopUp(final String key) {
+    LinkPopUp(final String key) {
       this.copy = new JMenuItem(tr("Copy key"));
       this.copy.addActionListener(new ActionListener() {
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryFilterDialog.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryFilterDialog.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryFilterDialog.java	(revision 32653)
@@ -277,5 +277,5 @@
   }
 
-  private class UpdateAction extends AbstractAction {
+  private static class UpdateAction extends AbstractAction {
 
     private static final long serialVersionUID = -7417238601979689863L;
@@ -292,5 +292,5 @@
   }
 
-  private class ResetAction extends AbstractAction {
+  private static class ResetAction extends AbstractAction {
     /**
      *
@@ -328,5 +328,5 @@
    * @author nokutu
    */
-  private class SignChooserAction extends AbstractAction {
+  private static class SignChooserAction extends AbstractAction {
 
     private static final long serialVersionUID = 8706299665735930148L;
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryHistoryDialog.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryHistoryDialog.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryHistoryDialog.java	(revision 32653)
@@ -49,6 +49,5 @@
  *
  */
-public class MapillaryHistoryDialog extends ToggleDialog implements
-    MapillaryRecordListener {
+public final class MapillaryHistoryDialog extends ToggleDialog implements MapillaryRecordListener {
 
   private static final long serialVersionUID = -3019715241209349372L;
@@ -59,8 +58,6 @@
   private final transient UndoRedoSelectionListener redoSelectionListener;
 
-  private final DefaultTreeModel undoTreeModel = new DefaultTreeModel(
-      new DefaultMutableTreeNode());
-  private final DefaultTreeModel redoTreeModel = new DefaultTreeModel(
-      new DefaultMutableTreeNode());
+  private final DefaultTreeModel undoTreeModel = new DefaultTreeModel(new DefaultMutableTreeNode());
+  private final DefaultTreeModel redoTreeModel = new DefaultTreeModel(new DefaultMutableTreeNode());
   private final JTree undoTree = new JTree(this.undoTreeModel);
   private final JTree redoTree = new JTree(this.redoTreeModel);
@@ -88,10 +85,8 @@
     this.undoTree.setRootVisible(false);
     this.undoTree.setCellRenderer(new MapillaryImageTreeCellRenderer());
-    this.undoTree.getSelectionModel().setSelectionMode(
-        TreeSelectionModel.SINGLE_TREE_SELECTION);
+    this.undoTree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
     this.undoTree.addMouseListener(new MouseEventHandler());
     this.undoSelectionListener = new UndoRedoSelectionListener(this.undoTree);
-    this.undoTree.getSelectionModel().addTreeSelectionListener(
-        this.undoSelectionListener);
+    this.undoTree.getSelectionModel().addTreeSelectionListener(this.undoSelectionListener);
 
     this.redoTree.expandRow(0);
@@ -99,23 +94,17 @@
     this.redoTree.setShowsRootHandles(true);
     this.redoTree.setRootVisible(false);
-    this.redoTree.getSelectionModel().setSelectionMode(
-        TreeSelectionModel.SINGLE_TREE_SELECTION);
+    this.redoTree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
     this.redoTree.addMouseListener(new MouseEventHandler());
     this.redoSelectionListener = new UndoRedoSelectionListener(this.redoTree);
-    this.redoTree.getSelectionModel().addTreeSelectionListener(
-        this.redoSelectionListener);
+    this.redoTree.getSelectionModel().addTreeSelectionListener(this.redoSelectionListener);
 
     JPanel treesPanel = new JPanel(new GridBagLayout());
     treesPanel.add(this.spacer, GBC.eol());
     this.spacer.setVisible(false);
-    treesPanel
-        .add(this.undoTree, GBC.eol().fill(GridBagConstraints.HORIZONTAL));
+    treesPanel.add(this.undoTree, GBC.eol().fill(GridBagConstraints.HORIZONTAL));
     this.separator.setVisible(false);
-    treesPanel.add(this.separator, GBC.eol()
-        .fill(GridBagConstraints.HORIZONTAL));
-    treesPanel
-        .add(this.redoTree, GBC.eol().fill(GridBagConstraints.HORIZONTAL));
-    treesPanel.add(Box.createRigidArea(new Dimension(0, 0)),
-        GBC.std().weight(0, 1));
+    treesPanel.add(this.separator, GBC.eol().fill(GridBagConstraints.HORIZONTAL));
+    treesPanel.add(this.redoTree, GBC.eol().fill(GridBagConstraints.HORIZONTAL));
+    treesPanel.add(Box.createRigidArea(new Dimension(0, 0)), GBC.std().weight(0, 1));
     treesPanel.setBackground(this.redoTree.getBackground());
 
@@ -123,6 +112,5 @@
     this.redoButton = new SideButton(new RedoAction());
 
-    createLayout(treesPanel, true,
-        Arrays.asList(new SideButton[] { this.undoButton, this.redoButton }));
+    createLayout(treesPanel, true, Arrays.asList(new SideButton[] {this.undoButton, this.redoButton}));
   }
 
@@ -196,9 +184,9 @@
   }
 
-  private class UndoAction extends AbstractAction {
+  private static class UndoAction extends AbstractAction {
 
     private static final long serialVersionUID = -6435832206342007269L;
 
-    public UndoAction() {
+    UndoAction() {
       putValue(NAME, tr("Undo"));
       new ImageProvider("undo").getResource().attachImageIcon(this, true);
@@ -211,9 +199,9 @@
   }
 
-  private class RedoAction extends AbstractAction {
+  private static class RedoAction extends AbstractAction {
 
     private static final long serialVersionUID = -2761935780353053512L;
 
-    public RedoAction() {
+    RedoAction() {
       putValue(NAME, tr("Redo"));
       new ImageProvider("redo").getResource().attachImageIcon(this, true);
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryImageDisplay.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryImageDisplay.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryImageDisplay.java	(revision 32653)
@@ -417,5 +417,5 @@
   }
 
-  private final Point img2compCoord(Rectangle visibleRect, int xImg, int yImg) {
+  private Point img2compCoord(Rectangle visibleRect, int xImg, int yImg) {
     Rectangle drawRect = calculateDrawImageRectangle(visibleRect);
     return new Point(drawRect.x + ((xImg - visibleRect.x) * drawRect.width)
@@ -424,5 +424,5 @@
   }
 
-  private final Point comp2imgCoord(Rectangle visibleRect, int xComp, int yComp) {
+  private Point comp2imgCoord(Rectangle visibleRect, int xComp, int yComp) {
     Rectangle drawRect = calculateDrawImageRectangle(visibleRect);
     return new Point(
@@ -432,5 +432,5 @@
   }
 
-  private static final Point getCenterImgCoord(Rectangle visibleRect) {
+  private static Point getCenterImgCoord(Rectangle visibleRect) {
     return new Point(visibleRect.x + visibleRect.width / 2, visibleRect.y + visibleRect.height / 2);
   }
@@ -499,5 +499,5 @@
   }
 
-  private static final void checkVisibleRectPos(Image image, Rectangle visibleRect) {
+  private static void checkVisibleRectPos(Image image, Rectangle visibleRect) {
     if (visibleRect.x < 0) {
       visibleRect.x = 0;
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryMainDialog.java	(revision 32653)
@@ -45,5 +45,5 @@
  * @author nokutu
  */
-public class MapillaryMainDialog extends ToggleDialog implements
+public final class MapillaryMainDialog extends ToggleDialog implements
         ICachedLoaderListener, MapillaryDataListener {
 
@@ -343,5 +343,5 @@
      * Constructs a normal NextPictureAction
      */
-    public NextPictureAction() {
+    NextPictureAction() {
       putValue(NAME, tr("Next picture"));
       putValue(SHORT_DESCRIPTION, tr("Shows the next picture in the sequence"));
@@ -359,5 +359,5 @@
    * @author nokutu
    */
-  private class PreviousPictureAction extends AbstractAction {
+  private static class PreviousPictureAction extends AbstractAction {
 
     private static final long serialVersionUID = -6420511632957956012L;
@@ -366,5 +366,5 @@
      * Constructs a normal PreviousPictureAction
      */
-    public PreviousPictureAction() {
+    PreviousPictureAction() {
       putValue(NAME, tr("Previous picture"));
       putValue(SHORT_DESCRIPTION, tr("Shows the previous picture in the sequence"));
@@ -382,5 +382,5 @@
    * @author nokutu
    */
-  private class RedAction extends AbstractAction {
+  private static class RedAction extends AbstractAction {
 
     private static final long serialVersionUID = -6480229431481386376L;
@@ -389,5 +389,5 @@
      * Constructs a normal RedAction
      */
-    public RedAction() {
+    RedAction() {
       putValue(NAME, tr("Jump to red"));
       putValue(SHORT_DESCRIPTION,
@@ -409,5 +409,5 @@
    * @author nokutu
    */
-  private class BlueAction extends AbstractAction {
+  private static class BlueAction extends AbstractAction {
 
     private static final long serialVersionUID = 6250690644594703314L;
@@ -416,5 +416,5 @@
      * Constructs a normal BlueAction
      */
-    public BlueAction() {
+    BlueAction() {
       putValue(NAME, tr("Jump to blue"));
       putValue(SHORT_DESCRIPTION,
@@ -431,5 +431,5 @@
   }
 
-  private class StopAction extends AbstractAction implements WalkListener {
+  private static class StopAction extends AbstractAction implements WalkListener {
 
     private static final long serialVersionUID = -6561451575815789198L;
@@ -440,5 +440,5 @@
      * Constructs a normal StopAction
      */
-    public StopAction() {
+    StopAction() {
       putValue(NAME, tr("Stop"));
       putValue(SHORT_DESCRIPTION, tr("Stops the walk."));
@@ -459,5 +459,5 @@
   }
 
-  private class PlayAction extends AbstractAction implements WalkListener {
+  private static class PlayAction extends AbstractAction implements WalkListener {
 
     private static final long serialVersionUID = -17943404752082788L;
@@ -467,5 +467,5 @@
      * Constructs a normal PlayAction
      */
-    public PlayAction() {
+    PlayAction() {
       putValue(NAME, tr("Play"));
       putValue(SHORT_DESCRIPTION, tr("Continues with the paused walk."));
@@ -487,5 +487,5 @@
   }
 
-  private class PauseAction extends AbstractAction implements WalkListener {
+  private static class PauseAction extends AbstractAction implements WalkListener {
 
     private static final long serialVersionUID = 4400240686337741192L;
@@ -496,5 +496,5 @@
      * Constructs a normal PauseAction
      */
-    public PauseAction() {
+    PauseAction() {
       putValue(NAME, tr("Pause"));
       putValue(SHORT_DESCRIPTION, tr("Pauses the walk."));
Index: applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryPreferenceSetting.java
===================================================================
--- applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryPreferenceSetting.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/src/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryPreferenceSetting.java	(revision 32653)
@@ -125,15 +125,15 @@
     }
 
-    new Thread( new Runnable() {
+    new Thread(new Runnable() {
       @Override
       public void run() {
         String username = MapillaryUser.getUsername();
         if (username != null) {
-          SwingUtilities.invokeLater( new Runnable() {
+          SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
               onLogin(MapillaryUser.getUsername());
             }
-          } );
+          });
         }
       }
@@ -197,5 +197,5 @@
     private final transient MapillaryLoginListener callback;
 
-    public LoginAction(MapillaryLoginListener loginCallback) {
+    LoginAction(MapillaryLoginListener loginCallback) {
       this.callback = loginCallback;
     }
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/AbstractTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/AbstractTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/AbstractTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/ImportTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryAbstractImageTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryAbstractImageTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryAbstractImageTest.java	(revision 32653)
@@ -1,5 +1,3 @@
-/**
- *
- */
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryDataTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryDataTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryDataTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryLayerTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryLayerTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryLayerTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillarySequenceTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillarySequenceTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillarySequenceTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryTrafficSignLayerTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryTrafficSignLayerTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/MapillaryTrafficSignLayerTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/cache/MapillaryCacheTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/cache/MapillaryCacheTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/cache/MapillaryCacheTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary.cache;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/gui/HyperlinkLabelTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/gui/HyperlinkLabelTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/gui/HyperlinkLabelTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary.gui;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryPreferenceSettingTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryPreferenceSettingTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/gui/MapillaryPreferenceSettingTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary.gui;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/history/MapillaryRecordTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/history/MapillaryRecordTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/history/MapillaryRecordTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary.history;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/io/download/MapillarySequenceDownloadThreadTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/io/download/MapillarySequenceDownloadThreadTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/io/download/MapillarySequenceDownloadThreadTest.java	(revision 32653)
@@ -1,5 +1,3 @@
-/**
- *
- */
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary.io.download;
 
@@ -15,7 +13,4 @@
 import org.openstreetmap.josm.plugins.mapillary.MapillaryLayer;
 
-/**
- *
- */
 public class MapillarySequenceDownloadThreadTest extends AbstractTest {
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/oauth/OAuthPortListenerTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/oauth/OAuthPortListenerTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/oauth/OAuthPortListenerTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary.oauth;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/oauth/UploadTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/oauth/UploadTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/oauth/UploadTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary.oauth;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/traffico/TrafficoGlyphTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/traffico/TrafficoGlyphTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/traffico/TrafficoGlyphTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary.traffico;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/traffico/TrafficoSignElementTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/traffico/TrafficoSignElementTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/traffico/TrafficoSignElementTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary.traffico;
 
Index: applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/traffico/TrafficoSignTest.java
===================================================================
--- applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/traffico/TrafficoSignTest.java	(revision 32652)
+++ applications/editors/josm/plugins/mapillary/test/unit/org/openstreetmap/josm/plugins/mapillary/traffico/TrafficoSignTest.java	(revision 32653)
@@ -1,2 +1,3 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.mapillary.traffico;
 
