Changeset 380 in josm
- Timestamp:
- 2007-10-13T17:12:04+02:00 (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmWriter.java
r379 r380 133 133 134 134 public void visit(Way w) { 135 if ( n.incomplete) return;135 if (w.incomplete) return; 136 136 addCommon(w, "way"); 137 137 out.println(">"); … … 142 142 143 143 public void visit(Relation e) { 144 if ( n.incomplete) return;144 if (e.incomplete) return; 145 145 addCommon(e, "relation"); 146 146 out.println(">");
Note:
See TracChangeset
for help on using the changeset viewer.