Ignore:
Timestamp:
2011-09-19T15:19:11+02:00 (15 years ago)
Author:
bastiK
Message:

remaining parameters for imagery preferences

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/Preferences.java

    r4450 r4452  
    967967                    continue;
    968968                }
     969            } else if (f.getType() == Double.class || f.getType() == double.class) {
     970                try {
     971                    value = Double.parseDouble(valueString);
     972                } catch (NumberFormatException nfe) {
     973                    continue;
     974                }
    969975            } else  if (f.getType() == String.class) {
    970976                value = valueString;
Note: See TracChangeset for help on using the changeset viewer.