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

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

Location:
trunk/src/org/openstreetmap/josm/gui/preferences/plugin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginListPanel.java

    r6070 r6084  
    122122            }
    123123        }
     124        @Override
    124125        public void actionPerformed(ActionEvent e) {
    125126            // Select/unselect corresponding plugin in the model
     
    228229            description.setText(pi.getDescriptionAsHtml());
    229230            description.getEditorPane().addHyperlinkListener(new HyperlinkListener() {
     231                @Override
    230232                public void hyperlinkUpdate(HyperlinkEvent e) {
    231233                    if(e.getEventType() == EventType.ACTIVATED) {
  • trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginPreferencesModel.java

    r6070 r6084  
    144144                availablePlugins,
    145145                new Comparator<PluginInformation>() {
     146                    @Override
    146147                    public int compare(PluginInformation o1, PluginInformation o2) {
    147148                        String n1 = o1.getName() == null ? "" : o1.getName().toLowerCase();
  • trunk/src/org/openstreetmap/josm/gui/preferences/plugin/PluginUpdatePolicyPanel.java

    r5886 r6084  
    240240
    241241    class TimeBasedPolicyChangeListener implements ChangeListener {
     242        @Override
    242243        public void stateChanged(ChangeEvent e) {
    243244            lblUpdateInterval.setEnabled(!rbTimeBasedUpatePolicy.get(Policy.NEVER).isSelected());
Note: See TracChangeset for help on using the changeset viewer.