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/geom/Geometry
*/
import {inherits} from '../index.js';
import _ol_Object_ from '../Object.js';
import BaseObject from '../Object.js';
import {createEmpty, getHeight, returnOrUpdate} from '../extent.js';
import {FALSE} from '../functions.js';
import _ol_geom_flat_transform_ from '../geom/flat/transform.js';
@@ -26,7 +26,7 @@ import _ol_transform_ from '../transform.js';
*/
var Geometry = function() {
_ol_Object_.call(this);
BaseObject.call(this);
/**
* @private
@@ -66,7 +66,7 @@ var Geometry = function() {
};
inherits(Geometry, _ol_Object_);
inherits(Geometry, BaseObject);
/**