Remove unused removeExtentFeature_ function in ol.interaction.Extent

This commit is contained in:
Frederic Junod
2016-09-05 09:14:25 +02:00
parent cd7bc2e4bf
commit ed4401e15e

View File

@@ -443,16 +443,6 @@ ol.interaction.Extent.prototype.createOrUpdatePointerFeature_ = function(vertex)
return vertexFeature;
};
/**
* @private
*/
ol.interaction.Extent.prototype.removePointerFeature_ = function() {
var vertexFeature = this.vertexFeature_;
if (vertexFeature) {
this.vertexOverlay_.getSource().removeFeature(vertexFeature);
this.vertexFeature_ = null;
}
};
/**
* @inheritDoc