Ignore:
Timestamp:
2017-10-11T14:52:45+02:00 (7 years ago)
Author:
bastiK
Message:

see #15410 - move cached() convenience method to super type

File:
1 edited

Legend:

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

    r12881 r12983  
    146146    }
    147147
    148     /**
    149      * Creates a new {@link CachingProperty} instance for this property.
    150      * @return The new caching property instance.
    151      */
     148    @Override
    152149    public CachingProperty<T> cached() {
    153         return new CachingProperty<>(this);
     150        // Removing this implementation breaks binary compatibility
     151        return super.cached();
    154152    }
    155153}
Note: See TracChangeset for help on using the changeset viewer.