OpenLayers OpenLayers

Changeset 3029

Show
Ignore:
Timestamp:
04/06/07 12:43:08 (2 years ago)
Author:
euzuro
Message:

small update to simplify code. when this class's initialize() function was changed, this was left as-is but now it can be reverted to just calling the constructor simply. #646

Files:

Legend:

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

    r3028 r3029  
    2929    */ 
    3030    initialize: function(layer, position, bounds, url, size) { 
    31         var newArguments = arguments; 
    32         newArguments = [layer, position, bounds, null, size]; 
    33         OpenLayers.Tile.prototype.initialize.apply(this, newArguments); 
     31        OpenLayers.Tile.prototype.initialize.apply(this, arguments); 
    3432        this.url = url;         
    3533        this.features = new Array();