- Timestamp:
- 2009-11-22T17:37:48+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/tagging/TagEditorModel.java
r2115 r2502 86 86 TagModel tag = tags.get(rowIndex); 87 87 switch(columnIndex) { 88 case 0: 89 case 1: return tag; 90 91 default: 92 throw new IndexOutOfBoundsException("unexpected columnIndex: columnIndex=" + columnIndex); 93 } 94 } 95 88 case 0: 89 case 1: return tag; 90 91 default: 92 throw new IndexOutOfBoundsException("unexpected columnIndex: columnIndex=" + columnIndex); 93 } 94 } 96 95 97 96 /** … … 342 341 // 343 342 if (tag.getName().trim().equals("")) { 343 continue; 344 } 345 // tag has an empty value => don't apply the tag 346 // 347 if (tag.getValue().trim().equals("")) { 344 348 continue; 345 349 }
Note:
See TracChangeset
for help on using the changeset viewer.