Remove unused TileQueue clear method

This commit is contained in:
Éric Lemoine
2013-01-20 15:15:13 +01:00
parent 9ef5f0b060
commit 7f38c1683e

View File

@@ -72,15 +72,6 @@ ol.TileQueue = function(tilePriorityFunction) {
ol.TileQueue.DROP = Infinity;
/**
* FIXME empty description for jsdoc
*/
ol.TileQueue.prototype.clear = function() {
this.heap_.length = 0;
this.queuedTileKeys_ = {};
};
/**
* Remove and return the highest-priority tile. O(logn).
* @private