Remove unnecessary cast

This commit is contained in:
Frederic Junod
2015-10-01 12:26:12 +02:00
parent 900827987a
commit 4d53049a7f
4 changed files with 5 additions and 7 deletions

View File

@@ -66,7 +66,7 @@ ol.format.GML3 = function(opt_options) {
* @type {boolean}
*/
this.multiSurface_ = options.multiSurface !== undefined ?
/** @type {boolean} */ (options.multiSurface) : true;
options.multiSurface : true;
/**
* @inheritDoc