From 7d8dbbc7cc66b4986586a12ed880c348466ab0c7 Mon Sep 17 00:00:00 2001 From: Paul Spencer Date: Mon, 9 Jun 2014 14:37:39 -0400 Subject: [PATCH] Remove getSimplifiedGeometry from ol.geom.Circle The `getSimplifiedGeometry` method is unnecessary as `ol.geom.SimpleGeometry`'s default implementation is to do the same thing (return `this`). --- src/ol/geom/circle.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/ol/geom/circle.js b/src/ol/geom/circle.js index 37827b8849..637de43051 100644 --- a/src/ol/geom/circle.js +++ b/src/ol/geom/circle.js @@ -129,15 +129,6 @@ ol.geom.Circle.prototype.getRadiusSquared_ = function() { }; -/** - * @inheritDoc - * @todo api - */ -ol.geom.Circle.prototype.getSimplifiedGeometry = function(squaredTolerance) { - return this; -}; - - /** * @inheritDoc * @todo api