From ed4401e15e769d8ee6f9583c6fae22e43671e455 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 5 Sep 2016 09:14:25 +0200 Subject: [PATCH] Remove unused removeExtentFeature_ function in ol.interaction.Extent --- src/ol/interaction/extent.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/ol/interaction/extent.js b/src/ol/interaction/extent.js index 6c7fb2efad..ddf6f0526f 100644 --- a/src/ol/interaction/extent.js +++ b/src/ol/interaction/extent.js @@ -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