large scale syntactic clean up adding missing semi-colons and curly braces around blocks.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@5002 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Paul Spencer
2007-10-18 12:27:35 +00:00
parent 954df47c30
commit 3e9beffc99
36 changed files with 154 additions and 98 deletions

View File

@@ -9,7 +9,7 @@ OpenLayers.State = {
INSERT: 'Insert',
UPDATE: 'Update',
DELETE: 'Delete'
}
};
/**
* @requires OpenLayers/Feature.js

View File

@@ -27,7 +27,7 @@ OpenLayers.Feature.WFS = OpenLayers.Class(OpenLayers.Feature, {
initialize: function(layer, xmlNode) {
var newArguments = arguments;
var data = this.processXMLNode(xmlNode);
newArguments = new Array(layer, data.lonlat, data)
newArguments = new Array(layer, data.lonlat, data);
OpenLayers.Feature.prototype.initialize.apply(this, newArguments);
this.createMarker();
this.layer.addMarker(this.marker);