- Timestamp:
- 2010-01-17T10:28:59+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/QuadBuckets.java
r2626 r2868 69 69 public String toString() 70 70 { 71 return super.toString()+ "["+level+"]: " + bbox; 71 return super.toString()+ "["+level+"]: " + bbox(); 72 72 } 73 73 public QBLevel(QBLevel parent) … … 142 142 out("splitting "+this.bbox()+" level "+level+" with " 143 143 + content.size() + " entries (my dimensions: " 144 + this.bbox.width()+", "+this.bbox.height()+")"); 144 + this.bbox().width()+", "+this.bbox().height()+")"); 145 145 } 146 146 // deferring allocation of children until use … … 586 586 return width()/2; 587 587 } 588 BBox bbox = null; 588 private BBox bbox = null; 589 589 public BBox bbox() 590 590 { … … 764 764 return this.remove(convert(o)); 765 765 } 766 p ublicboolean remove_slow(T removeme)766 private boolean remove_slow(T removeme) 767 767 { 768 768 boolean ret = false; … … 799 799 out("qb remove result: " + ret); 800 800 } 801 search_cache = null; // Search cache might point to one of removed buckets 801 802 return ret; 802 803 }
Note:
See TracChangeset
for help on using the changeset viewer.