Remove unconditionally exported methods
This commit is contained in:
@@ -65,10 +65,6 @@ ol.interaction.Interaction.prototype.getActive = function() {
|
||||
return /** @type {boolean} */ (
|
||||
this.get(ol.interaction.InteractionProperty.ACTIVE));
|
||||
};
|
||||
goog.exportProperty(
|
||||
ol.interaction.Interaction.prototype,
|
||||
'getActive',
|
||||
ol.interaction.Interaction.prototype.getActive);
|
||||
|
||||
|
||||
/**
|
||||
@@ -89,10 +85,6 @@ ol.interaction.Interaction.prototype.getMap = function() {
|
||||
ol.interaction.Interaction.prototype.setActive = function(active) {
|
||||
this.set(ol.interaction.InteractionProperty.ACTIVE, active);
|
||||
};
|
||||
goog.exportProperty(
|
||||
ol.interaction.Interaction.prototype,
|
||||
'setActive',
|
||||
ol.interaction.Interaction.prototype.setActive);
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@@ -178,10 +178,6 @@ ol.interaction.Snap.prototype.addFeature = function(feature, opt_listen) {
|
||||
}
|
||||
}
|
||||
};
|
||||
goog.exportProperty(
|
||||
ol.interaction.Snap.prototype,
|
||||
'addFeature',
|
||||
ol.interaction.Snap.prototype.addFeature);
|
||||
|
||||
|
||||
/**
|
||||
@@ -311,10 +307,6 @@ ol.interaction.Snap.prototype.removeFeature = function(feature, opt_unlisten) {
|
||||
}
|
||||
}
|
||||
};
|
||||
goog.exportProperty(
|
||||
ol.interaction.Snap.prototype,
|
||||
'removeFeature',
|
||||
ol.interaction.Snap.prototype.removeFeature);
|
||||
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user