Use ol.inherits instead of goog.inherits

This commit is contained in:
Frederic Junod
2016-04-07 16:26:11 +02:00
parent 072728b083
commit e289bfbb7d
166 changed files with 448 additions and 452 deletions
+2 -2
View File
@@ -17,7 +17,7 @@ goog.require('ol.proj.Projection');
*/
ol.VectorTile = function(tileCoord, state, src, format, tileLoadFunction) {
goog.base(this, tileCoord, state);
ol.Tile.call(this, tileCoord, state);
/**
* @private
@@ -76,7 +76,7 @@ ol.VectorTile = function(tileCoord, state, src, format, tileLoadFunction) {
this.url_ = src;
};
goog.inherits(ol.VectorTile, ol.Tile);
ol.inherits(ol.VectorTile, ol.Tile);
/**