Changeset 12479 in josm for trunk/src/org
- Timestamp:
- 2017-07-16T20:12:45+02:00 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/DataSet.java
r12329 r12479 234 234 Collection<Relation> relations = copyFrom.getRelations(); 235 235 for (Relation r : relations) { 236 Relation newRelation = new Relation(r , r.isNew());236 Relation newRelation = new Relation(r); 237 237 newRelation.setMembers(null); 238 238 primMap.put(r, newRelation); … … 251 251 } 252 252 version = copyFrom.version; 253 uploadPolicy = copyFrom.uploadPolicy; 253 254 } finally { 254 255 copyFrom.getReadLock().unlock();
Note:
See TracChangeset
for help on using the changeset viewer.