removed redundancy (1.0.0 leftover) when parsing srs. r=bartvde (closes #2283)

git-svn-id: http://svn.openlayers.org/trunk/openlayers@9896 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
ahocevar
2009-12-16 12:23:27 +00:00
parent 31189f1e45
commit f5ff990898

View File

@@ -43,16 +43,7 @@ OpenLayers.Format.WMSCapabilities.v1_1_1 = OpenLayers.Class(
readers: {
"wms": OpenLayers.Util.applyDefaults({
"SRS": function(node, obj) {
var srs = this.getChildValue(node);
if (srs.indexOf(" ")) {
// v1.1.0 style SRS
var values = srs.split(/ +/);
for (var i=0, len=values.length; i<len; i++) {
obj.srs[values[i]] = true;
}
} else {
obj.srs[srs] = true;
}
obj.srs[this.getChildValue(node)] = true;
}
}, OpenLayers.Format.WMSCapabilities.v1_1.prototype.readers["wms"])
},