Ignore:
Timestamp:
2009-10-10T14:08:39+02:00 (15 years ago)
Author:
stoecker
Message:

applied #3671 - patch by Dave Hansen - performance fixes of data storage

File:
1 edited

Legend:

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

    r2181 r2263  
    11// License: GPL. Copyright 2007 by Immanuel Scholz and others
    22package org.openstreetmap.josm.data.osm;
    3 
     3import org.openstreetmap.josm.tools.ReverseLookup;
    44import static org.openstreetmap.josm.tools.I18n.tr;
    55
     
    3939     * conversion of the whole DataSet by iterating over this data structure.
    4040     */
    41     public Collection<Node> nodes = new QuadBuckets();
     41    public QuadBuckets<Node> nodes = new QuadBuckets<Node>();
    4242
    4343    /**
     
    4646     * The way nodes are stored only in the way list.
    4747     */
    48     public Collection<Way> ways = new LinkedList<Way>();
     48    public QuadBuckets<Way> ways = new QuadBuckets<Way>();
    4949
    5050    /**
Note: See TracChangeset for help on using the changeset viewer.