From 7ae65c32e1721e0792e1ba8343b97290a59a03c4 Mon Sep 17 00:00:00 2001 From: ahocevar Date: Tue, 12 Nov 2013 16:51:39 +0100 Subject: [PATCH] Removing unused method --- src/ol/geom/point.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/ol/geom/point.js b/src/ol/geom/point.js index 6e9574b737..b11f862858 100644 --- a/src/ol/geom/point.js +++ b/src/ol/geom/point.js @@ -95,11 +95,3 @@ ol.geom.Point.prototype.transform = function(transform) { transform(coordinates, coordinates, coordinates.length); this.setCoordinates(coordinates); // for change event }; - - -/** - * @inheritDoc - */ -ol.geom.Point.prototype.invalidateBounds = function() { - this.bounds_ = null; -};