Ignore:
Timestamp:
2017-02-25T00:59:57+01:00 (9 years ago)
Author:
donvip
Message:

fix some warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/merge-overlap/src/mergeoverlap/MergeOverlapAction.java

    r33153 r33154  
    5252public class MergeOverlapAction extends JosmAction {
    5353
     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
    5459    /**
    5560     * Constructs a new {@code MergeOverlapAction}.
     
    6166                Shortcut.ALT_CTRL), true);
    6267    }
    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<>();
    6868
    6969    /**
Note: See TracChangeset for help on using the changeset viewer.