Changeset 14317 in josm for trunk/src


Ignore:
Timestamp:
2018-10-13T01:45:52+02:00 (6 years ago)
Author:
Don-vip
Message:

fix #16835 - PluginHandlerTest: fix for non-headless mode by properly mocking dialogs (patch by ris)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/plugins/PluginHandler.java

    r14273 r14317  
    183183            a.setText(text);
    184184            a.setCaretPosition(0);
    185             if (!GraphicsEnvironment.isHeadless()) {
    186                 JOptionPane.showMessageDialog(MainApplication.getMainFrame(), new JScrollPane(a), tr("Plugin information"),
    187                         JOptionPane.INFORMATION_MESSAGE);
    188             }
     185            JOptionPane.showMessageDialog(MainApplication.getMainFrame(), new JScrollPane(a), tr("Plugin information"),
     186                    JOptionPane.INFORMATION_MESSAGE);
    189187        }
    190188    }
     
    352350        }
    353351        sb.append("</ul></html>");
    354         if (!GraphicsEnvironment.isHeadless()) {
    355             JOptionPane.showMessageDialog(
    356                     parent,
    357                     sb.toString(),
    358                     tr("Warning"),
    359                     JOptionPane.WARNING_MESSAGE
    360             );
    361         }
     352        JOptionPane.showMessageDialog(
     353                parent,
     354                sb.toString(),
     355                tr("Warning"),
     356                JOptionPane.WARNING_MESSAGE
     357        );
    362358    }
    363359
Note: See TracChangeset for help on using the changeset viewer.