Remove unused variables in structs

This commit is contained in:
Tom Payne
2013-05-21 12:49:40 +02:00
parent 8b539cd4cc
commit f4d54ace1d
3 changed files with 3 additions and 2 deletions

View File

@@ -80,7 +80,6 @@ ol.structs.IntegerSet.prototype.compactRanges_ = function() {
var arr = this.arr_;
var n = arr.length;
var rangeIndex = 0;
var lastRange = null;
var i;
for (i = 0; i < n; i += 2) {
if (arr[i] == arr[i + 1]) {