Changeset 30737 in osm for applications/editors/josm/plugins/poly/src/poly/PolyImporter.java
- Timestamp:
- 2014-10-18T23:07:52+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.