Rename ol.source.VectorSource2 to ol.source.Vector2

This commit is contained in:
Tom Payne
2013-09-09 15:18:31 +02:00
parent 23505799b6
commit d1659b8e69
5 changed files with 13 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
goog.provide('ol.layer.VectorLayer2');
goog.require('ol.layer.Layer');
goog.require('ol.source.VectorSource2');
goog.require('ol.source.Vector2');
@@ -18,8 +18,8 @@ goog.inherits(ol.layer.VectorLayer2, ol.layer.Layer);
/**
* @return {ol.source.VectorSource2} Source.
* @return {ol.source.Vector2} Source.
*/
ol.layer.VectorLayer2.prototype.getVectorSource = function() {
return /** @type {ol.source.VectorSource2} */ (this.getSource());
return /** @type {ol.source.Vector2} */ (this.getSource());
};