Remove goog.isDef from attribution.js through color.js (-54 B)

This commit is contained in:
Tim Schaub
2015-09-18 14:51:24 +09:00
parent 37d0176642
commit c8e9525f3b
4 changed files with 6 additions and 7 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ ol.Collection = function(opt_array) {
* @private
* @type {!Array.<T>}
*/
this.array_ = goog.isDef(opt_array) ? opt_array : [];
this.array_ = opt_array ? opt_array : [];
this.updateLength_();