Remove unneeded type cast

This commit is contained in:
Frederic Junod
2014-03-10 17:13:16 +01:00
parent 1c13d6ed69
commit ea8c004c76

View File

@@ -93,17 +93,17 @@ ol.format.WMSCapabilities.readBoundingBox_ = function(node, objectStack) {
goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT); goog.asserts.assert(node.nodeType == goog.dom.NodeType.ELEMENT);
goog.asserts.assert(node.localName == 'BoundingBox'); goog.asserts.assert(node.localName == 'BoundingBox');
var extent = /** @type {ol.Extent} */ ([ var extent = [
ol.format.XSD.readDecimalString(node.getAttribute('minx')), ol.format.XSD.readDecimalString(node.getAttribute('minx')),
ol.format.XSD.readDecimalString(node.getAttribute('miny')), ol.format.XSD.readDecimalString(node.getAttribute('miny')),
ol.format.XSD.readDecimalString(node.getAttribute('maxx')), ol.format.XSD.readDecimalString(node.getAttribute('maxx')),
ol.format.XSD.readDecimalString(node.getAttribute('maxy')) ol.format.XSD.readDecimalString(node.getAttribute('maxy'))
]); ];
var resolutions = /** @type {Array.<number>} */ ([ var resolutions = [
ol.format.XSD.readDecimalString(node.getAttribute('resx')), ol.format.XSD.readDecimalString(node.getAttribute('resx')),
ol.format.XSD.readDecimalString(node.getAttribute('resy')) ol.format.XSD.readDecimalString(node.getAttribute('resy'))
]); ];
return { return {
'crs': node.getAttribute('CRS'), 'crs': node.getAttribute('CRS'),
@@ -127,12 +127,12 @@ ol.format.WMSCapabilities.readEXGeographicBoundingBox_ =
/** @type {ol.format.EXGeographicBoundingBoxType} */ ({}), /** @type {ol.format.EXGeographicBoundingBoxType} */ ({}),
ol.format.WMSCapabilities.EX_GEOGRAPHIC_BOUNDING_BOX_PARSERS_, ol.format.WMSCapabilities.EX_GEOGRAPHIC_BOUNDING_BOX_PARSERS_,
node, objectStack); node, objectStack);
return /** @type {ol.Extent} */ ([ return [
geographicBoundingBox.westBoundLongitude, geographicBoundingBox.westBoundLongitude,
geographicBoundingBox.southBoundLatitude, geographicBoundingBox.southBoundLatitude,
geographicBoundingBox.eastBoundLongitude, geographicBoundingBox.eastBoundLongitude,
geographicBoundingBox.northBoundLatitude geographicBoundingBox.northBoundLatitude
]); ];
}; };
@@ -431,10 +431,10 @@ ol.format.WMSCapabilities.readSizedFormatOnlineresource_ =
var formatOnlineresource = var formatOnlineresource =
ol.format.WMSCapabilities.readFormatOnlineresource_(node, objectStack); ol.format.WMSCapabilities.readFormatOnlineresource_(node, objectStack);
if (goog.isDef(formatOnlineresource)) { if (goog.isDef(formatOnlineresource)) {
var size = /** @type {ol.Size} */ ([ var size = [
ol.format.XSD.readNonNegativeIntegerString(node.getAttribute('width')), ol.format.XSD.readNonNegativeIntegerString(node.getAttribute('width')),
ol.format.XSD.readNonNegativeIntegerString(node.getAttribute('height')) ol.format.XSD.readNonNegativeIntegerString(node.getAttribute('height'))
]); ];
goog.object.set(formatOnlineresource, 'size', size); goog.object.set(formatOnlineresource, 'size', size);
return formatOnlineresource; return formatOnlineresource;
} }