Rename ol.source.ImageSource to ol.source.Image

This commit is contained in:
Tom Payne
2013-09-09 14:33:12 +02:00
parent fc2975f346
commit 5967f96047
6 changed files with 22 additions and 22 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
goog.provide('ol.layer.ImageLayer');
goog.require('ol.layer.Layer');
goog.require('ol.source.ImageSource');
goog.require('ol.source.Image');
@@ -17,8 +17,8 @@ goog.inherits(ol.layer.ImageLayer, ol.layer.Layer);
/**
* @return {ol.source.ImageSource} Single image source.
* @return {ol.source.Image} Single image source.
*/
ol.layer.ImageLayer.prototype.getImageSource = function() {
return /** @type {ol.source.ImageSource} */ (this.getSource());
return /** @type {ol.source.Image} */ (this.getSource());
};