Remove unused variables in geom

This commit is contained in:
Tom Payne
2013-05-21 12:47:14 +02:00
parent 6900c90bc5
commit b021bfd70f
9 changed files with 18 additions and 18 deletions

View File

@@ -12,6 +12,7 @@ describe('ol.geom.LinearRing', function() {
it('throws when given mismatched dimension', function() {
expect(function() {
var ring = new ol.geom.LinearRing([[10, 20], [30, 40, 50]]);
ring = ring; // suppress gjslint warning about unused variable
}).to.throwException();
});