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
@@ -25,7 +25,7 @@ goog.require('ol.events.Event');
*/
ol.events.EventTarget = function() {
goog.base(this);
ol.Disposable.call(this);
/**
* @private
@@ -46,7 +46,7 @@ ol.events.EventTarget = function() {
this.listeners_ = {};
};
goog.inherits(ol.events.EventTarget, ol.Disposable);
ol.inherits(ol.events.EventTarget, ol.Disposable);
/**