Ignore:
Timestamp:
2013-07-26T13:38:17+02:00 (11 years ago)
Author:
bastiK
Message:

see #8902 - add missing @Override annotations (patch by shinigami)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/HelpAwareOptionPane.java

    r6070 r6084  
    113113        }
    114114
     115        @Override
    115116        public void actionPerformed(ActionEvent e) {
    116117            pane.setValue(value);
     
    168169        HelpUtil.setHelpContext(b, helpTopic);
    169170        Action a = new AbstractAction() {
     171            @Override
    170172            public void actionPerformed(ActionEvent e) {
    171173                HelpBrowser.setUrlForHelpTopic(helpTopic);
     
    271273        dialog.getRootPane().getInputMap(JComponent.WHEN_ANCESTOR_OF_FOCUSED_COMPONENT).put(KeyStroke.getKeyStroke(KeyEvent.VK_ESCAPE,0), "close");
    272274        dialog.getRootPane().getActionMap().put("close", new AbstractAction() {
     275            @Override
    273276            public void actionPerformed(ActionEvent e) {
    274277                pane.setValue(JOptionPane.CLOSED_OPTION);
     
    324327    static public void showMessageDialogInEDT(final Component parentComponent, final Object msg, final String title, final int messageType, final String helpTopic)  {
    325328        GuiHelper.runInEDT(new Runnable() {
     329            @Override
    326330            public void run() {
    327331                showOptionDialog(parentComponent, msg, title, messageType, null, null, null, helpTopic);
Note: See TracChangeset for help on using the changeset viewer.