source: josm/trunk/src/org/openstreetmap/josm/data/gpx/GpxRoute.java@ 7033

Last change on this file since 7033 was 7005, checked in by Don-vip, 10 years ago

see #8465 - use diamond operator where applicable

  • Property svn:eol-style set to native
File size: 264 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.gpx;
3
4import java.util.Collection;
5import java.util.LinkedList;
6
7public class GpxRoute extends WithAttributes {
8 public Collection<WayPoint> routePoints = new LinkedList<>();
9}
Note: See TracBrowser for help on using the repository browser.