Changeset 17371 in osm for applications/editors
- Timestamp:
- 2009-08-30T18:10:42+02:00 (15 years ago)
- Location:
- applications/editors/josm/plugins/graphview
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/graphview/build.xml
r17210 r17371 57 57 <attribute name="Plugin-Description" value="Visualizes routing information as a routing graph."/> 58 58 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/index.php/JOSM/Plugins/Graphview"/> 59 <attribute name="Plugin-Mainversion" value=" 1986"/>59 <attribute name="Plugin-Mainversion" value="2012"/> 60 60 <attribute name="Plugin-Version" value="${version.entry.commit.revision}"/> 61 61 </manifest> -
applications/editors/josm/plugins/graphview/src/org/openstreetmap/josm/plugins/graphview/plugin/data/JOSMDataSource.java
r16630 r17371 46 46 47 47 public Iterable<Node> getNodes(Way way) { 48 return new FilteredOsmPrimitiveIterable<Node>(way. nodes);48 return new FilteredOsmPrimitiveIterable<Node>(way.getNodes()); 49 49 } 50 50 … … 74 74 75 75 private TagGroup getTags(OsmPrimitive primitive) { 76 if (primitive. keys== null) {76 if (primitive.getKeys() == null) { 77 77 return EMPTY_TAG_GROUP; 78 78 } else { 79 return new MapBasedTagGroup(primitive. keys);79 return new MapBasedTagGroup(primitive.getKeys()); 80 80 } 81 81 }
Note:
See TracChangeset
for help on using the changeset viewer.