Ignore:
Timestamp:
2014-09-14T21:43:59+02:00 (10 years ago)
Author:
Don-vip
Message:

fix #8430 - Download along: rework selection panel to allow smaller areas

File:
1 edited

Legend:

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

    r7315 r7536  
    7878 *
    7979 * @author imi
     80 * @since 74
    8081 */
    8182public class Preferences {
     
    16601661
    16611662        String[] obsolete = {
    1662                 "downloadAlong.downloadAlongTrack.distance",   // 07/2013 - can be removed mid-2014. Replaced by downloadAlongWay.distance
    1663                 "downloadAlong.downloadAlongTrack.area",       // 07/2013 - can be removed mid-2014. Replaced by downloadAlongWay.area
    1664                 "gpxLayer.downloadAlongTrack.distance",        // 07/2013 - can be removed mid-2014. Replaced by downloadAlongTrack.distance
    1665                 "gpxLayer.downloadAlongTrack.area",            // 07/2013 - can be removed mid-2014. Replaced by downloadAlongTrack.area
    1666                 "gpxLayer.downloadAlongTrack.near",            // 07/2013 - can be removed mid-2014. Replaced by downloadAlongTrack.near
    16671663                "validator.tests",                             // 01/2014 - can be removed end-2014. Replaced by validator.skip
    16681664                "validator.testsBeforeUpload",                 // 01/2014 - can be removed end-2014. Replaced by validator.skipBeforeUpload
     
    16811677    }
    16821678
    1683     public static boolean isEqual(Setting<?> a, Setting<?> b) {
    1684         if (a == null) return b == null;
    1685         return a.equals(b);
    1686     }
    1687 
    16881679    /**
    16891680     * Enables or not the preferences file auto-save mechanism (save each time a setting is changed).
Note: See TracChangeset for help on using the changeset viewer.