Ignore:
Timestamp:
2007-10-13T17:12:04+02:00 (17 years ago)
Author:
gebner
Message:

Oops. Don't commit copy-and-pasted code without verifying that it actually
compiles.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmWriter.java

    r379 r380  
    133133
    134134        public void visit(Way w) {
    135                 if (n.incomplete) return;
     135                if (w.incomplete) return;
    136136                addCommon(w, "way");
    137137                out.println(">");
     
    142142
    143143        public void visit(Relation e) {
    144                 if (n.incomplete) return;
     144                if (e.incomplete) return;
    145145                addCommon(e, "relation");
    146146                out.println(">");
Note: See TracChangeset for help on using the changeset viewer.