Ignore:
Timestamp:
2007-11-22T14:44:21+01:00 (17 years ago)
Author:
hakan
Message:

Extract clearTileStorage() for later use

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/slippymap/src/org/openstreetmap/josm/plugins/slippymap/SlippyMapLayer.java

    r5676 r5679  
    3939{
    4040
    41     ArrayList<HashMap<Integer, SlippyMapTile>> tileStorage = new ArrayList<HashMap<Integer, SlippyMapTile>>(
    42                                                                    20);
     41    ArrayList<HashMap<Integer, SlippyMapTile>> tileStorage = null;
    4342
    4443    Point[][]                                  pixelpos    = new Point[21][21];
     
    5554    {
    5655        super("Slippy Map");
    57         for (int i = 0; i < 18; i++)
    58             tileStorage.add(new HashMap<Integer, SlippyMapTile>());
     56
     57        clearTileStorage();
    5958
    6059        tileOptionMenu = new JPopupMenu();
     
    146145    }
    147146
     147    private void clearTileStorage()
     148    {
     149        tileStorage = new ArrayList<HashMap<Integer, SlippyMapTile>>(20);
     150
     151        for (int i = 0; i < 18; i++)
     152            tileStorage.add(new HashMap<Integer, SlippyMapTile>());
     153    }
     154
    148155    void loadAllTiles()
    149156    {
Note: See TracChangeset for help on using the changeset viewer.