Unnecessary and missing semicolon.
This commit is contained in:
@@ -345,7 +345,7 @@ OpenLayers.Format.CQL = (function() {
|
||||
var result = buildAst(tokenize(text));
|
||||
if (this.keepData) {
|
||||
this.data = result;
|
||||
};
|
||||
}
|
||||
return result;
|
||||
},
|
||||
|
||||
|
||||
@@ -147,7 +147,7 @@ OpenLayers.Format.SOSCapabilities.v1_0_0 = OpenLayers.Class(
|
||||
offering.resultModels.push(this.getChildValue(node));
|
||||
},
|
||||
"responseMode": function(node, offering) {
|
||||
offering.responseModes.push(this.getChildValue(node));;
|
||||
offering.responseModes.push(this.getChildValue(node));
|
||||
}
|
||||
},
|
||||
"ows": OpenLayers.Format.OWSCommon.v1_1_0.prototype.readers["ows"]
|
||||
|
||||
@@ -1044,7 +1044,7 @@ OpenLayers.Format.WMC.v1 = OpenLayers.Class(OpenLayers.Format.XML, {
|
||||
version: server.version
|
||||
};
|
||||
if (server.title) {
|
||||
attributes.title = server.title
|
||||
attributes.title = server.title;
|
||||
}
|
||||
this.setAttributes(node, attributes);
|
||||
|
||||
|
||||
@@ -248,7 +248,7 @@ OpenLayers.Format.WMSGetFeatureInfo = OpenLayers.Class(OpenLayers.Format.XML, {
|
||||
var name = (child.prefix) ?
|
||||
child.nodeName.split(":")[1] : child.nodeName;
|
||||
if (grandchildren.length == 0) {
|
||||
attributes[name] = null
|
||||
attributes[name] = null;
|
||||
} else if (grandchildren.length == 1) {
|
||||
var grandchild = grandchildren[0];
|
||||
if (grandchild.nodeType == 3 ||
|
||||
|
||||
Reference in New Issue
Block a user