Index: trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadSessionTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadSessionTask.java	(revision 8092)
+++ trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadSessionTask.java	(revision 8093)
@@ -78,5 +78,5 @@
      * Session importers can be added by plugins and there is currently
      * no way to ensure that these are safe for remotecontol.
-     * @return 
+     * @return <code>true</code> if session import is allowed
      */
     @Override
Index: trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java
===================================================================
--- trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java	(revision 8092)
+++ trunk/src/org/openstreetmap/josm/data/imagery/ImageryInfo.java	(revision 8093)
@@ -711,5 +711,5 @@
     /**
      * Sets the entry name and handle translation.
-     * @param name The used language
+     * @param language The used language
      * @param name The entry name
      * @since 8091
@@ -826,5 +826,5 @@
     /**
      * Sets the description text when existing.
-     * @param name The used language
+     * @param language The used language
      * @param description the imagery description text
      * @since 8091
Index: trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java	(revision 8092)
+++ trunk/src/org/openstreetmap/josm/gui/NavigatableComponent.java	(revision 8093)
@@ -476,9 +476,9 @@
      * @param initial true if this call initializes the viewport.
      */
-    private void zoomNoUndoTo(EastNorth newCenter, double newScale, boolean intial) {
+    private void zoomNoUndoTo(EastNorth newCenter, double newScale, boolean initial) {
         if (!newCenter.equals(center)) {
             EastNorth oldCenter = center;
             center = newCenter;
-            if (!intial) {
+            if (!initial) {
                 firePropertyChange(PROPNAME_CENTER, oldCenter, newCenter);
             }
@@ -487,10 +487,10 @@
             double oldScale = scale;
             scale = newScale;
-            if (!intial) {
+            if (!initial) {
                 firePropertyChange(PROPNAME_SCALE, oldScale, newScale);
             }
         }
 
-        if (!intial) {
+        if (!initial) {
             repaint();
             fireZoomChanged();
Index: trunk/src/org/openstreetmap/josm/gui/widgets/TextContextualPopupMenu.java
===================================================================
--- trunk/src/org/openstreetmap/josm/gui/widgets/TextContextualPopupMenu.java	(revision 8092)
+++ trunk/src/org/openstreetmap/josm/gui/widgets/TextContextualPopupMenu.java	(revision 8093)
@@ -123,5 +123,5 @@
      * Detaches this contextual menu from its text component.
      * @return {@code this}
-     * @see #attach(JTextComponent)
+     * @see #attach(JTextComponent, boolean)
      */
     protected TextContextualPopupMenu detach() {
Index: trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java	(revision 8092)
+++ trunk/src/org/openstreetmap/josm/plugins/ReadRemotePluginInformationTask.java	(revision 8093)
@@ -105,6 +105,6 @@
      * Creates the file name for the cached plugin list and the icon cache file.
      *
+     * @param pluginDir directory of plugin for data storage
      * @param site the name of the site
-     * @param type icon cache or plugin list cache
      * @return the file name for the cache file
      */
