Changeset 273 in josm for src/org/openstreetmap/josm/tools
- Timestamp:
- 2007-07-05T10:48:17+02:00 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/org/openstreetmap/josm/tools/AutoCompleteComboBox.java
r272 r273 29 29 } 30 30 31 public void remove(int offs, int len) throws BadLocationException { 31 @Override public void remove(int offs, int len) throws BadLocationException { 32 32 if (selecting) 33 33 return; … … 35 35 } 36 36 37 public void insertString(int offs, String str, AttributeSet a) throws BadLocationException { 37 @Override public void insertString(int offs, String str, AttributeSet a) throws BadLocationException { 38 38 super.insertString(offs, str, a); 39 39
Note:
See TracChangeset
for help on using the changeset viewer.