Ignore:
Timestamp:
2015-05-18T02:52:44+02:00 (9 years ago)
Author:
Don-vip
Message:

remove useless code (Method implemented with an exact copy of its superclass's method)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/shortcut/PrefJPanel.java

    r8380 r8392  
    118118
    119119    private static class ScListModel extends AbstractTableModel {
    120         private String[] columnNames = new String[]{tr("Action"), tr("Shortcut")};
     120        private final String[] columnNames = new String[]{tr("Action"), tr("Shortcut")};
    121121        private transient List<Shortcut> data;
    122122
     
    139139        public Object getValueAt(int row, int col) {
    140140            return (col==0)?  data.get(row).getLongText() : data.get(row);
    141         }
    142         @Override
    143         public boolean isCellEditable(int row, int col) {
    144             return false;
    145141        }
    146142    }
Note: See TracChangeset for help on using the changeset viewer.