Remove unconditionally exported methods

This commit is contained in:
Tim Schaub
2015-04-02 15:52:41 +02:00
parent f42c0cb0aa
commit 0189e11931
15 changed files with 0 additions and 348 deletions
-8
View File
@@ -93,10 +93,6 @@ ol.layer.Layer.prototype.getSource = function() {
return goog.isDef(source) ?
/** @type {ol.source.Source} */ (source) : null;
};
goog.exportProperty(
ol.layer.Layer.prototype,
'getSource',
ol.layer.Layer.prototype.getSource);
/**
@@ -142,7 +138,3 @@ ol.layer.Layer.prototype.handleSourcePropertyChange_ = function() {
ol.layer.Layer.prototype.setSource = function(source) {
this.set(ol.layer.LayerProperty.SOURCE, source);
};
goog.exportProperty(
ol.layer.Layer.prototype,
'setSource',
ol.layer.Layer.prototype.setSource);