Changeset 30737 in osm for applications/editors/josm/plugins/poly
- Timestamp:
- 2014-10-18T23:07:52+02:00 (10 years ago)
- 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 40 40 try { 41 41 DataSet ds = ((OsmDataLayer)layer).data; 42 Map<Way, Boolean> ways = new TreeMap< Way, Boolean>();42 Map<Way, Boolean> ways = new TreeMap<>(); 43 43 String polygonName = file.getName(); 44 44 if( polygonName.indexOf('.') > 0 ) … … 91 91 92 92 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<>(); 95 95 for( Way w : ways.keySet() ) { 96 96 Boolean outer = ways.get(w); -
applications/editors/josm/plugins/poly/src/poly/PolyImporter.java
r30495 r30737 72 72 if( name == null || name.trim().length() == 0 ) 73 73 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<>(); 75 75 Area area = null; 76 76 boolean parsingSection = false; … … 177 177 if( !outer ) 178 178 this.name = this.name.substring(1); 179 nodes = new ArrayList< LatLon>();179 nodes = new ArrayList<>(); 180 180 way = null; 181 181 polygonName = null;
Note:
See TracChangeset
for help on using the changeset viewer.