OpenLayers OpenLayers

Changeset 1738

Show
Ignore:
Timestamp:
10/26/06 11:22:37 (2 years ago)
Author:
tschaub
Message:

Apply patch for #376 - fixing tile.clear() calls that were mistakenly replaced with OpenLayers.Util.clearArray() at r1590

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/openlayers/lib/OpenLayers/Tile.js

    r1721 r1738  
    8484        } 
    8585 
    86         OpenLayers.Util.clearArray(this); 
     86        this.clear(); 
    8787        this.bounds = bounds.clone(); 
    8888        this.position = position.clone(); 
     
    122122}; 
    123123 
     124 
  • trunk/openlayers/lib/OpenLayers/Tile/WFS.js

    r1721 r1738  
    5959    draw:function() { 
    6060        if (this.drawn) { 
    61             OpenLayers.Util.clearArray(this); 
     61            this.clear(); 
    6262        } 
    6363        OpenLayers.Tile.prototype.draw.apply(this, arguments); 
     
    132132); 
    133133 
     134