Rename _ol_Object_ to BaseObject

This commit is contained in:
Tim Schaub
2018-01-08 10:03:31 -07:00
parent 35db8721b2
commit 24dd0ca924
21 changed files with 95 additions and 95 deletions

View File

@@ -2,7 +2,7 @@
* @module ol/layer/Base
*/
import {inherits} from '../index.js';
import _ol_Object_ from '../Object.js';
import BaseObject from '../Object.js';
import _ol_layer_Property_ from '../layer/Property.js';
import {clamp} from '../math.js';
import _ol_obj_ from '../obj.js';
@@ -23,7 +23,7 @@ import _ol_obj_ from '../obj.js';
*/
var _ol_layer_Base_ = function(options) {
_ol_Object_.call(this);
BaseObject.call(this);
/**
* @type {Object.<string, *>}
@@ -60,7 +60,7 @@ var _ol_layer_Base_ = function(options) {
};
inherits(_ol_layer_Base_, _ol_Object_);
inherits(_ol_layer_Base_, BaseObject);
/**