Ignore:
Timestamp:
2014-04-26T17:39:23+02:00 (10 years ago)
Author:
Don-vip
Message:

see #8465 - use diamond operator where applicable

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/WayData.java

    r6009 r7005  
    99public class WayData extends PrimitiveData implements IWay {
    1010
    11     private List<Long> nodes = new ArrayList<Long>();
     11    private List<Long> nodes = new ArrayList<>();
    1212
    1313    public WayData() {
     
    4141
    4242    public void setNodes(List<Long> nodes) {
    43         this.nodes = new ArrayList<Long>(nodes);
     43        this.nodes = new ArrayList<>(nodes);
    4444    }
    4545
Note: See TracChangeset for help on using the changeset viewer.