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

@@ -15,6 +15,7 @@ describe('ol.geom.MultiLineString', function() {
it('throws when given with insufficient dimensions', function() {
expect(function() {
var multi = new ol.geom.MultiLineString([1]);
multi = multi; // suppress gjslint warning about unused variable
}).to.throwException();
});