Changeset 11632 in josm for trunk/src


Ignore:
Timestamp:
2017-02-26T05:32:11+01:00 (7 years ago)
Author:
Don-vip
Message:

see #3346 - make DataSet.dataSources private

File:
1 edited

Legend:

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

    r11629 r11632  
    133133
    134134    /**
     135     * All data sources of this DataSet.
     136     */
     137    private final Collection<DataSource> dataSources = new LinkedList<>();
     138
     139    /**
    135140     * Constructs a new {@code DataSet}.
    136141     */
     
    472477        return relations.contains(r);
    473478    }
    474 
    475     /**
    476      * All data sources of this DataSet.
    477      */
    478     public final Collection<DataSource> dataSources = new LinkedList<>();
    479479
    480480    /**
Note: See TracChangeset for help on using the changeset viewer.