Changeset 30737 in osm for applications/editors/josm/plugins/globalsat/src
- Timestamp:
- 2014-10-18T23:07:52+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/globalsat/src/org/openstreetmap/josm/plugins/globalsat/GlobalsatDg100.java
r30532 r30737 150 150 GpsRec last = null; 151 151 result = new GpxData(); 152 Collection<WayPoint> seg = new ArrayList< WayPoint>(100);152 Collection<WayPoint> seg = new ArrayList<>(100); 153 153 for(GpsRec r:gpsRecList){ 154 154 if(canceled){ … … 217 217 { 218 218 int nextIdx = 0; 219 List<FileInfoRec> result = new ArrayList< FileInfoRec>(64);219 List<FileInfoRec> result = new ArrayList<>(64); 220 220 try{ 221 221 do{ … … 232 232 public List<GpsRec> readGpsRecList(List<FileInfoRec> fileInfoList) throws ConnectionException 233 233 { 234 List<GpsRec> result = new ArrayList< GpsRec>(200);234 List<GpsRec> result = new ArrayList<>(200); 235 235 236 236 try{
Note:
See TracChangeset
for help on using the changeset viewer.