Changeset 2868 in josm


Ignore:
Timestamp:
Jan 17, 2010 10:28:59 AM (3 years ago)
Author:
jttt
Message:

Fixed #4324 New ways not displayed

File:
1 edited

Legend:

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

    r2626 r2868  
    6969        public String toString() 
    7070        { 
    71             return super.toString()+ "["+level+"]: " + bbox; 
     71            return super.toString()+ "["+level+"]: " + bbox(); 
    7272        } 
    7373        public QBLevel(QBLevel parent) 
     
    142142                out("splitting "+this.bbox()+" level "+level+" with " 
    143143                        + content.size() + " entries (my dimensions: " 
    144                         + this.bbox.width()+", "+this.bbox.height()+")"); 
     144                        + this.bbox().width()+", "+this.bbox().height()+")"); 
    145145            } 
    146146            // deferring allocation of children until use 
     
    586586            return width()/2; 
    587587        } 
    588         BBox bbox = null; 
     588        private BBox bbox = null; 
    589589        public BBox bbox() 
    590590        { 
     
    764764        return this.remove(convert(o)); 
    765765    } 
    766     public boolean remove_slow(T removeme) 
     766    private boolean remove_slow(T removeme) 
    767767    { 
    768768        boolean ret = false; 
     
    799799            out("qb remove result: " + ret); 
    800800        } 
     801        search_cache = null; // Search cache might point to one of removed buckets 
    801802        return ret; 
    802803    } 
Note: See TracChangeset for help on using the changeset viewer.