Changeset 2017 in josm for trunk/src/org/openstreetmap/josm/data/osm/Way.java
- Timestamp:
- 30.08.2009 19:07:24 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/Way.java
r1997 r2017 1 1 // License: GPL. Copyright 2007 by Immanuel Scholz and others 2 2 package org.openstreetmap.josm.data.osm; 3 4 import static org.openstreetmap.josm.tools.I18n.tr;5 import static org.openstreetmap.josm.tools.I18n.trn;6 3 7 4 import java.util.ArrayList; 8 5 import java.util.Arrays; 9 6 import java.util.Collection; 10 import java.util.HashSet;11 7 import java.util.List; 12 8 … … 25 21 * All way nodes in this way 26 22 * 27 * @deprecated This public field will become private or protected in the future. 28 * Use the new public API instead. 29 */ 30 @Deprecated 31 public final List<Node> nodes = new ArrayList<Node>(); 23 */ 24 private final List<Node> nodes = new ArrayList<Node>(); 32 25 33 26 /**
Note: See TracChangeset
for help on using the changeset viewer.
