Unnecessary and missing semicolon.

This commit is contained in:
Frederic Junod
2012-03-16 12:04:11 +01:00
parent 2b41c8926b
commit 2de2fe2563
13 changed files with 14 additions and 14 deletions

View File

@@ -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 ||