Changeset 19062 in josm for trunk/src/org/openstreetmap/josm/data/osm/WaySegment.java
- Timestamp:
- 2024-04-27T08:58:28+02:00 (13 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/WaySegment.java
r17897 r19062 3 3 4 4 /** 5 * A segment consisting of 2consecutive nodes out of a way.5 * A segment consisting of two consecutive nodes out of a way. 6 6 */ 7 7 public final class WaySegment extends IWaySegment<Node, Way> { … … 37 37 endIndex--; 38 38 } 39 throw new IllegalArgumentException(" Node pair is notpart ofway!");39 throw new IllegalArgumentException("The node pair is not consecutive part of the way!"); 40 40 } 41 41
Note:
See TracChangeset
for help on using the changeset viewer.