Ticket #11335: 11335.patch

File 11335.patch, 795 bytes (added by Larry0ua, 10 years ago)
  • src/org/openstreetmap/josm/gui/dialogs/properties/TagEditHelper.java

     
    635635
    636636        private void selectNumberOfTags() {
    637637            String s = JOptionPane.showInputDialog(this, tr("Please enter the number of recently added tags to display"));
    638             if (s!=null) try {
     638            if (s==null) {
     639                return;
     640            }
     641            try {
    639642                int v = Integer.parseInt(s);
    640643                if (v>=0 && v<=MAX_LRU_TAGS_NUMBER) {
    641644                    PROPERTY_RECENT_TAGS_NUMBER.put(v);