Ignore:
Timestamp:
2017-12-02T18:51:17+01:00 (6 years ago)
Author:
Don-vip
Message:

see #15310 - cacheDir is unused, deprecate new methods

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/preferences/projection/SingleProjectionChoice.java

    r10173 r13182  
    2323     * @param id unique identifier for the projection choice, e.g. "core:thisproj"
    2424     * @param code the unique identifier for the projection, e.g. "EPSG:1234"
    25      * @param cacheDir a cache directory name
     25     * @param cacheDir unused
     26     * @deprecated use {@link #SingleProjectionChoice(String, String, String)} instead
    2627     */
     28    @Deprecated
    2729    public SingleProjectionChoice(String name, String id, String code, String cacheDir) {
    28         super(name, id, cacheDir);
    29         this.code = code;
     30        this(name, id, code);
    3031    }
    3132
Note: See TracChangeset for help on using the changeset viewer.