Remove empty functions

This commit is contained in:
Tom Payne
2012-07-29 12:15:43 +02:00
parent faa37490ea
commit adfbf2ae7b

View File

@@ -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');
};