Remove unneeded type cast

This commit is contained in:
Frederic Junod
2014-12-09 09:15:00 +01:00
parent 39cb30308d
commit de058c7889

View File

@@ -27,8 +27,7 @@ goog.require('ol.xml');
* @api stable
*/
ol.format.WFS = function(opt_options) {
var options = /** @type {olx.format.WFSOptions} */
(goog.isDef(opt_options) ? opt_options : {});
var options = goog.isDef(opt_options) ? opt_options : {};
/**
* @private