From d37c42bcb5f2832946685066461722c2e982443c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Junod?= Date: Wed, 8 Oct 2008 12:50:42 +0000 Subject: [PATCH] Add missing semi-colons. r=pagameba (closes #1762) git-svn-id: http://svn.openlayers.org/trunk/openlayers@8099 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Format/GML/Base.js | 2 +- lib/OpenLayers/Format/GML/v3.js | 4 ++-- lib/OpenLayers/Util.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/OpenLayers/Format/GML/Base.js b/lib/OpenLayers/Format/GML/Base.js index dbf5749b4e..ad80778dd9 100644 --- a/lib/OpenLayers/Format/GML/Base.js +++ b/lib/OpenLayers/Format/GML/Base.js @@ -453,7 +453,7 @@ OpenLayers.Format.GML.Base = OpenLayers.Class(OpenLayers.Format.XML, { this.writeNode( "feature:_attribute", {name: name, value: value}, node - ) + ); } } return node; diff --git a/lib/OpenLayers/Format/GML/v3.js b/lib/OpenLayers/Format/GML/v3.js index f07010034b..f4f5335271 100644 --- a/lib/OpenLayers/Format/GML/v3.js +++ b/lib/OpenLayers/Format/GML/v3.js @@ -141,12 +141,12 @@ OpenLayers.Format.GML.v3 = OpenLayers.Class(OpenLayers.Format.GML.Base, { }, "lowerCorner": function(node, container) { var obj = {}; - this.readChildNodes(node, obj) + this.readChildNodes(node, obj); container.points[0] = obj.points[0]; }, "upperCorner": function(node, container) { var obj = {}; - this.readChildNodes(node, obj) + this.readChildNodes(node, obj); container.points[1] = obj.points[0]; } }, OpenLayers.Format.GML.Base.prototype.readers["gml"]), diff --git a/lib/OpenLayers/Util.js b/lib/OpenLayers/Util.js index 4bf8045ef8..2456795f93 100644 --- a/lib/OpenLayers/Util.js +++ b/lib/OpenLayers/Util.js @@ -1269,7 +1269,7 @@ OpenLayers.Util.createUrlObject = function(url, options) { var postChunk = relStr.substr(index + 3); relStr = prevChunk + postChunk; } - } while(index != -1) + } while(index != -1); var windowAnchor = document.createElement("a"); var windowUrl = window.location.href;