Replace goog.getUid with ol.getUid

This commit is contained in:
Peter Robins
2016-07-20 10:50:16 +00:00
parent 29230d48b3
commit f8f2cd11d5
40 changed files with 104 additions and 82 deletions

View File

@@ -102,11 +102,11 @@ ol.inherits(ol.ObjectEvent, ol.events.Event);
ol.Object = function(opt_values) {
ol.Observable.call(this);
// Call goog.getUid to ensure that the order of objects' ids is the same as
// Call ol.getUid to ensure that the order of objects' ids is the same as
// the order in which they were created. This also helps to ensure that
// object properties are always added in the same order, which helps many
// JavaScript engines generate faster code.
goog.getUid(this);
ol.getUid(this);
/**
* @private