Changeset 19107 in josm
- Timestamp:
- 2024-06-17T15:25:41+02:00 (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/vector/VectorWay.java
r18578 r19107 57 57 @Override 58 58 public int getNodesCount() { 59 return this. getNodes().size();59 return this.nodes.size(); 60 60 } 61 61 62 62 @Override 63 63 public VectorNode getNode(int index) { 64 return this. getNodes().get(index);64 return this.nodes.get(index); 65 65 } 66 66 … … 83 83 @Override 84 84 public List<Long> getNodeIds() { 85 return this. getNodes().stream().map(VectorNode::getId).collect(Collectors.toList());85 return this.nodes.stream().map(VectorNode::getId).collect(Collectors.toList()); 86 86 } 87 87 88 88 @Override 89 89 public long getNodeId(int idx) { 90 return this. getNodes().get(idx).getId();90 return this.nodes.get(idx).getId(); 91 91 } 92 92
Note:
See TracChangeset
for help on using the changeset viewer.
