Index: trunk/src/org/openstreetmap/josm/plugins/PluginSelection.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/PluginSelection.java	(revision 2706)
+++ trunk/src/org/openstreetmap/josm/plugins/PluginSelection.java	(revision 2707)
@@ -105,10 +105,13 @@
         }
         if (toUpdate.isEmpty()) {
-            JOptionPane.showMessageDialog(
-                    Main.parent,
-                    tr("All installed plugins are up to date."),
-                    tr("Information"),
-                    JOptionPane.INFORMATION_MESSAGE
-            );
+            if(pluginPanel != null) /* don't view this message for auto-update */
+            {
+                JOptionPane.showMessageDialog(
+                        Main.parent,
+                        tr("All installed plugins are up to date."),
+                        tr("Information"),
+                        JOptionPane.INFORMATION_MESSAGE
+                );
+            }
             done = true;
         } else {
