Changeset 33154 in osm for applications/editors/josm/plugins/merge-overlap/src/mergeoverlap/MergeOverlapAction.java
- Timestamp:
- 2017-02-25T00:59:57+01:00 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/merge-overlap/src/mergeoverlap/MergeOverlapAction.java
r33153 r33154 52 52 public class MergeOverlapAction extends JosmAction { 53 53 54 Map<Way, List<Relation>> relations = new HashMap<>(); 55 Map<Way, Way> oldWays = new HashMap<>(); 56 Map<Relation, Relation> newRelations = new HashMap<>(); 57 Set<Way> deletes = new HashSet<>(); 58 54 59 /** 55 60 * Constructs a new {@code MergeOverlapAction}. … … 61 66 Shortcut.ALT_CTRL), true); 62 67 } 63 64 Map<Way, List<Relation>> relations = new HashMap<>();65 Map<Way, Way> oldWays = new HashMap<>();66 Map<Relation, Relation> newRelations = new HashMap<>();67 Set<Way> deletes = new HashSet<>();68 68 69 69 /**
Note:
See TracChangeset
for help on using the changeset viewer.
