- Timestamp:
- 2007-10-13T16:57:07+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmWriter.java
r364 r379 126 126 127 127 public void visit(Node n) { 128 if (n.incomplete) return; 128 129 addCommon(n, "node"); 129 130 out.print(" lat='"+n.coor.lat()+"' lon='"+n.coor.lon()+"'"); … … 132 133 133 134 public void visit(Way w) { 135 if (n.incomplete) return; 134 136 addCommon(w, "way"); 135 137 out.println(">"); … … 140 142 141 143 public void visit(Relation e) { 144 if (n.incomplete) return; 142 145 addCommon(e, "relation"); 143 146 out.println(">");
Note:
See TracChangeset
for help on using the changeset viewer.