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/gpx/GpxData.java

    r6830 r7005  
    2626    public String creator;
    2727
    28     public final Collection<GpxTrack> tracks = new LinkedList<GpxTrack>();
    29     public final Collection<GpxRoute> routes = new LinkedList<GpxRoute>();
    30     public final Collection<WayPoint> waypoints = new LinkedList<WayPoint>();
     28    public final Collection<GpxTrack> tracks = new LinkedList<>();
     29    public final Collection<GpxRoute> routes = new LinkedList<>();
     30    public final Collection<WayPoint> waypoints = new LinkedList<>();
    3131
    3232    @SuppressWarnings("unchecked")
Note: See TracChangeset for help on using the changeset viewer.