Changeset 12672 in josm for trunk/src/org/openstreetmap/josm/data/osm/DataSet.java
- Timestamp:
- 2017-08-27T17:07:54+02:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/DataSet.java
r12620 r12672 30 30 import org.openstreetmap.josm.data.ProjectionBounds; 31 31 import org.openstreetmap.josm.data.SelectionChangedListener; 32 import org.openstreetmap.josm.data.conflict.ConflictCollection; 32 33 import org.openstreetmap.josm.data.coor.EastNorth; 33 34 import org.openstreetmap.josm.data.coor.LatLon; … … 196 197 private final Collection<DataSource> dataSources = new LinkedList<>(); 197 198 199 private final ConflictCollection conflicts = new ConflictCollection(); 200 198 201 /** 199 202 * Constructs a new {@code DataSet}. … … 1347 1350 } 1348 1351 1352 /** 1353 * Replies the set of conflicts currently managed in this layer. 1354 * 1355 * @return the set of conflicts currently managed in this layer 1356 * @since 12672 1357 */ 1358 public ConflictCollection getConflicts() { 1359 return conflicts; 1360 } 1361 1349 1362 /* --------------------------------------------------------------------------------- */ 1350 1363 /* interface ProjectionChangeListner */
Note:
See TracChangeset
for help on using the changeset viewer.
