- Timestamp:
- 2015-04-18T17:17:12+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/TagEditHelper.java
r8205 r8222 651 651 private void selectNumberOfTags() { 652 652 String s = JOptionPane.showInputDialog(this, tr("Please enter the number of recently added tags to display")); 653 if (s!=null) try { 653 if (s == null) { 654 return; 655 } 656 try { 654 657 int v = Integer.parseInt(s); 655 658 if (v>=0 && v<=MAX_LRU_TAGS_NUMBER) {
Note:
See TracChangeset
for help on using the changeset viewer.