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

@@ -82,7 +82,7 @@ describe('ol.structs.PriorityQueue', function() {
pq = new ol.structs.PriorityQueue(function(element) {
return Math.abs(element - target);
}, goog.identityFunction);
var element, i;
var i;
for (i = 0; i < 32; ++i) {
pq.enqueue(Math.random());
}