Changeset 16108 in josm for trunk


Ignore:
Timestamp:
2020-03-10T22:12:52+01:00 (4 years ago)
Author:
Don-vip
Message:

fix #18909 - UniqueIdGenerator.generateUniqueId() should be public (patch by taylor.smock)

File:
1 edited

Legend:

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

    r15820 r16108  
    1515     * Generates a new primitive unique id.
    1616     * @return new primitive unique (negative) id
     17     * @since 16108 (made public)
    1718     */
    18     long generateUniqueId() {
     19    public long generateUniqueId() {
    1920        return idCounter.decrementAndGet();
    2021    }
Note: See TracChangeset for help on using the changeset viewer.