Ignore:
Timestamp:
2014-10-18T23:07:52+02:00 (10 years ago)
Author:
donvip
Message:

[josm_plugins] fix Java 7 / unused code warnings

Location:
applications/editors/josm/plugins/poly/src/poly
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/poly/src/poly/PolyExporter.java

    r29854 r30737  
    4040            try {
    4141                DataSet ds = ((OsmDataLayer)layer).data;
    42                 Map<Way, Boolean> ways = new TreeMap<Way, Boolean>();
     42                Map<Way, Boolean> ways = new TreeMap<>();
    4343                String polygonName = file.getName();
    4444                if( polygonName.indexOf('.') > 0 )
     
    9191
    9292    private Map<Way, Boolean> sortOuterInner( Map<Way, Boolean> ways ) {
    93         LinkedHashMap<Way, Boolean> result = new LinkedHashMap<Way, Boolean>(ways.size());
    94         List<Way> inner = new ArrayList<Way>();
     93        LinkedHashMap<Way, Boolean> result = new LinkedHashMap<>(ways.size());
     94        List<Way> inner = new ArrayList<>();
    9595        for( Way w : ways.keySet() ) {
    9696            Boolean outer = ways.get(w);
  • applications/editors/josm/plugins/poly/src/poly/PolyImporter.java

    r30495 r30737  
    7272        if( name == null || name.trim().length() == 0 )
    7373            throw new IllegalDataException(tr("The file must begin with a polygon name"));
    74         List<Area> areas = new ArrayList<Area>();
     74        List<Area> areas = new ArrayList<>();
    7575        Area area = null;
    7676        boolean parsingSection = false;
     
    177177            if( !outer )
    178178                this.name = this.name.substring(1);
    179             nodes = new ArrayList<LatLon>();
     179            nodes = new ArrayList<>();
    180180            way = null;
    181181            polygonName = null;
Note: See TracChangeset for help on using the changeset viewer.