Changeset 732 in josm for trunk


Ignore:
Timestamp:
2008-07-20T23:07:24+02:00 (16 years ago)
Author:
framm
Message:
  • fixed "override" bugs that made josm not compile
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/corrector/TagCorrectionTableModel.java

    r729 r732  
    2121        }
    2222
    23         @Override public int getColumnCount() {
     23        public int getColumnCount() {
    2424                return 5;
    2525        }
     
    4747        }
    4848
    49         @Override public int getRowCount() {
     49        public int getRowCount() {
    5050                return tagCorrections.size();
    5151        }
    5252
    53         @Override public Object getValueAt(int rowIndex, int colIndex) {
     53        public Object getValueAt(int rowIndex, int colIndex) {
    5454
    5555                TagCorrection tagCorrection = tagCorrections.get(rowIndex);
Note: See TracChangeset for help on using the changeset viewer.