Ignore:
Timestamp:
2018-02-18T05:02:23+01:00 (6 years ago)
Author:
Don-vip
Message:

see #8039, see #10456 - support read-only data layers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/tagging/ac/AutoCompletionManager.java

    r13173 r13434  
    145145     * Constructs a new {@code AutoCompletionManager}.
    146146     * @param ds data set
     147     * @throws NullPointerException if ds is null
    147148     */
    148149    public AutoCompletionManager(DataSet ds) {
    149         this.ds = ds;
     150        this.ds = Objects.requireNonNull(ds);
    150151        this.dirty = true;
    151152    }
Note: See TracChangeset for help on using the changeset viewer.