diff --git a/src/ol/dom/map.js b/src/ol/dom/map.js index c5418bb31b..76b5ad6ec4 100644 --- a/src/ol/dom/map.js +++ b/src/ol/dom/map.js @@ -167,22 +167,6 @@ ol.dom.Map.prototype.handleCenterChanged = function() { }; -/** - * @inheritDoc - */ -ol.dom.Map.prototype.handleLayerAdd = function(layer) { - goog.base(this, 'handleLayerAdd', layer); -}; - - -/** - * @inheritDoc - */ -ol.dom.Map.prototype.handleLayerRemove = function(layer) { - goog.base(this, 'handleLayerRemove', layer); -}; - - /** * @inheritDoc */ @@ -193,11 +177,3 @@ ol.dom.Map.prototype.handleResolutionChanged = function() { this.resetLayersPane_(); this.render(); }; - - -/** - * @inheritDoc - */ -ol.dom.Map.prototype.handleSizeChanged = function() { - goog.base(this, 'handleSizeChanged'); -};