Changeset 396 in josm


Ignore:
Timestamp:
Oct 16, 2007 11:16:23 PM (6 years ago)
Author:
framm
Message:

fix for nodes without coordinates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/Node.java

    r343 r396  
    4949 
    5050        @Override public String toString() { 
     51                if (coor == null) return "{Node id="+id+"}"; 
    5152                return "{Node id="+id+",lat="+coor.lat()+",lon="+coor.lon()+"}"; 
    5253        } 
Note: See TracChangeset for help on using the changeset viewer.