Ignore:
Timestamp:
2006-03-25T16:21:09+01:00 (18 years ago)
Author:
imi
Message:
  • refactored GpsPoint to be immutable and added LatLon and NorthEast
  • refactored Bounding Box calculations
  • various other renames
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/data/osm/visitor/CollectBackReferencesVisitor.java

    r66 r71  
    1111
    1212/**
    13  * Helper that collect all line segments a node is part of, all waies
     13 * Helper that collect all line segments a node is part of, all ways
    1414 * a node or line segment is part of and all areas a node is part of.
    1515 *
     
    3737       
    3838        public void visit(Node n) {
    39                 for (Way t : ds.waies) {
     39                for (Way t : ds.ways) {
    4040                        if (t.isDeleted())
    4141                                continue;
     
    5757        }
    5858        public void visit(LineSegment ls) {
    59                 for (Way t : ds.waies) {
     59                for (Way t : ds.ways) {
    6060                        if (t.isDeleted())
    6161                                continue;
Note: See TracChangeset for help on using the changeset viewer.