Ignore:
Timestamp:
2020-06-07T14:49:02+02:00 (4 years ago)
Author:
Don-vip
Message:

see #19334 - javadoc fixes + protected constructors for abstract classes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/spi/preferences/AbstractSetting.java

    r12882 r16553  
    1414    protected Long time;
    1515    protected boolean isNew;
     16
    1617    /**
    1718     * Constructs a new {@code AbstractSetting} with the given value
    1819     * @param value The setting value
    1920     */
    20     public AbstractSetting(T value) {
     21    protected AbstractSetting(T value) {
    2122        this.value = value;
    2223        this.time = null;
Note: See TracChangeset for help on using the changeset viewer.