Remove remaining goog.isDefAndNotNull() calls

This commit is contained in:
Tim Schaub
2015-09-29 09:51:41 -06:00
parent 1aca93d297
commit ab87eb8af0
4 changed files with 6 additions and 8 deletions

View File

@@ -92,7 +92,7 @@ ol.source.WMTS = function(options) {
* @private
* @type {!Array.<string>}
*/
this.urls_ = goog.isDefAndNotNull(urls) ? urls : [];
this.urls_ = urls || [];
// FIXME: should we guess this requestEncoding from options.url(s)
// structure? that would mean KVP only if a template is not provided.