Changeset 5298 in josm for trunk/src/org/openstreetmap/josm/data/conflict
- Timestamp:
- 2012-06-24T21:02:36+02:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/conflict/Conflict.java
r5266 r5298 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.data.conflict; 3 4 import java.util.Map; 3 5 4 6 import org.openstreetmap.josm.data.osm.OsmPrimitive; … … 22 24 private final T their; 23 25 private final boolean isMyDeleted; 26 27 // mergedMap is only set if the conflict results from merging two layers 28 private Map<PrimitiveId, PrimitiveId> mergedMap; 24 29 25 30 public Conflict(T my, T their) { … … 111 116 return isMyDeleted; 112 117 } 118 119 public final Map<PrimitiveId, PrimitiveId> getMergedMap() { 120 return mergedMap; 121 } 122 123 public final void setMergedMap(Map<PrimitiveId, PrimitiveId> mergedMap) { 124 this.mergedMap = mergedMap; 125 } 113 126 }
Note:
See TracChangeset
for help on using the changeset viewer.