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`).
This commit is contained in:
Paul Spencer
2014-06-09 14:37:39 -04:00
parent 2a42e7736a
commit 7d8dbbc7cc

View File

@@ -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