Index: trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java
===================================================================
--- trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java	(revision 14316)
+++ trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java	(revision 14317)
@@ -183,8 +183,6 @@
             a.setText(text);
             a.setCaretPosition(0);
-            if (!GraphicsEnvironment.isHeadless()) {
-                JOptionPane.showMessageDialog(MainApplication.getMainFrame(), new JScrollPane(a), tr("Plugin information"),
-                        JOptionPane.INFORMATION_MESSAGE);
-            }
+            JOptionPane.showMessageDialog(MainApplication.getMainFrame(), new JScrollPane(a), tr("Plugin information"),
+                    JOptionPane.INFORMATION_MESSAGE);
         }
     }
@@ -352,12 +350,10 @@
         }
         sb.append("</ul></html>");
-        if (!GraphicsEnvironment.isHeadless()) {
-            JOptionPane.showMessageDialog(
-                    parent,
-                    sb.toString(),
-                    tr("Warning"),
-                    JOptionPane.WARNING_MESSAGE
-            );
-        }
+        JOptionPane.showMessageDialog(
+                parent,
+                sb.toString(),
+                tr("Warning"),
+                JOptionPane.WARNING_MESSAGE
+        );
     }
 
