From 49ff1b44ea35ff527f0c96d5a7a75a6507ae7fbd Mon Sep 17 00:00:00 2001 From: Christopher Eykamp Date: Thu, 27 Dec 2012 15:43:33 +0100 Subject: [PATCH] Whitespace --- lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js b/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js index cdd1db21f9..a2c3a50d20 100644 --- a/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js +++ b/lib/OpenLayers/Format/WCSCapabilities/v1_1_0.js @@ -63,30 +63,24 @@ OpenLayers.Format.WCSCapabilities.v1_1_0 = OpenLayers.Class( "Capabilities": function(node, obj) { // In 1.0.0, this was WCS_Capabilties, in 1.1.0, it's just Capabilities this.readChildNodes(node, obj); }, - "Contents": function(node, request) { request.contents = []; this.readChildNodes(node, request.contents); }, - "CoverageSummary": function(node, contents) { var coverageSummary = {}; this.readChildNodes(node, coverageSummary); // Read the summary contents.push(coverageSummary); // Add it to the contents array }, - "Identifier": function(node, coverageSummary) { coverageSummary.identifier = this.getChildValue(node); }, - "Title": function(node, coverageSummary) { coverageSummary.title = this.getChildValue(node); }, - "Abstract": function(node, coverageSummary) { coverageSummary.abstract = this.getChildValue(node); }, - "SupportedCRS": function(node, coverageSummary) { var crs = this.getChildValue(node); if(crs) { @@ -96,7 +90,6 @@ OpenLayers.Format.WCSCapabilities.v1_1_0 = OpenLayers.Class( coverageSummary["supportedCRS"].push(crs); } }, - "SupportedFormat": function(node, coverageSummary) { var format = this.getChildValue(node); if(format) { @@ -107,7 +100,6 @@ OpenLayers.Format.WCSCapabilities.v1_1_0 = OpenLayers.Class( } }, - }, OpenLayers.Format.WCSCapabilities.v1.prototype.readers["wcs"]), "ows": OpenLayers.Format.OWSCommon.v1.prototype.readers["ows"] },