- Timestamp:
- 2008-07-20T23:07:24+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/corrector/TagCorrectionTableModel.java
r729 r732 21 21 } 22 22 23 @Overridepublic int getColumnCount() {23 public int getColumnCount() { 24 24 return 5; 25 25 } … … 47 47 } 48 48 49 @Overridepublic int getRowCount() {49 public int getRowCount() { 50 50 return tagCorrections.size(); 51 51 } 52 52 53 @Overridepublic Object getValueAt(int rowIndex, int colIndex) {53 public Object getValueAt(int rowIndex, int colIndex) { 54 54 55 55 TagCorrection tagCorrection = tagCorrections.get(rowIndex);
Note:
See TracChangeset
for help on using the changeset viewer.