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
+1
View File
@@ -23,6 +23,7 @@ describe('ol.geom.Point', function() {
it('throws when given with insufficient dimensions', function() {
expect(function() {
var point = new ol.geom.Point([1]);
point = point; // suppress gjslint warning about unused variable
}).to.throwException();
});