Ignore:
Timestamp:
2009-12-05T18:23:03+01:00 (14 years ago)
Author:
jttt
Message:

Encalupse OsmPrimitive.incomplete

File:
1 edited

Legend:

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

    r2381 r2578  
    105105
    106106    public void visit(Node n) {
    107         if (n.incomplete) return;
     107        if (n.isIncomplete()) return;
    108108        addCommon(n, "node");
    109109        out.print(" lat='"+n.getCoor().lat()+"' lon='"+n.getCoor().lon()+"'");
     
    116116
    117117    public void visit(Way w) {
    118         if (w.incomplete) return;
     118        if (w.isIncomplete()) return;
    119119        addCommon(w, "way");
    120120        if (!withBody) {
     
    130130
    131131    public void visit(Relation e) {
    132         if (e.incomplete) return;
     132        if (e.isIncomplete()) return;
    133133        addCommon(e, "relation");
    134134        if (!withBody) {
Note: See TracChangeset for help on using the changeset viewer.