Changeset 30737 in osm for applications/editors/josm/plugins/imagewaypoint
- Timestamp:
- 2014-10-18T23:07:52+02:00 (10 years ago)
- Location:
- applications/editors/josm/plugins/imagewaypoint/src/org/insignificant/josm/plugins/imagewaypoint
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/imagewaypoint/src/org/insignificant/josm/plugins/imagewaypoint/ImageEntries.java
r14122 r30737 39 39 40 40 private ImageEntries() { 41 this.images = new ArrayList< ImageEntry>();42 this.locatedImages = new ArrayList< ImageEntry>();43 this.listeners = new ArrayList< IImageChangeListener>();41 this.images = new ArrayList<>(); 42 this.locatedImages = new ArrayList<>(); 43 this.listeners = new ArrayList<>(); 44 44 this.listener = new ImageReadyListener(this); 45 45 … … 112 112 private final List<String> getTextContentsFromWayPoint( 113 113 final WayPoint wayPoint) { 114 final List<String> texts = new ArrayList< String>();114 final List<String> texts = new ArrayList<>(); 115 115 for(String s : new String[]{"name", "cmt", "desc"}) 116 116 { -
applications/editors/josm/plugins/imagewaypoint/src/org/insignificant/josm/plugins/imagewaypoint/ImageWayPointPlugin.java
r29803 r30737 60 60 61 61 // recursively find all files 62 final List<File> allFiles = new ArrayList< File>();62 final List<File> allFiles = new ArrayList<>(); 63 63 addFiles(allFiles, files.toArray(new File[0])); 64 64
Note:
See TracChangeset
for help on using the changeset viewer.