Fix ND comments and indentation. No functional changes.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@5485 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Frédéric Junod
2007-12-18 10:49:29 +00:00
parent a61e5fb91c
commit bcc623f444
3 changed files with 8 additions and 14 deletions
+4 -5
View File
@@ -64,8 +64,8 @@ OpenLayers.Rule.Comparison = OpenLayers.Class(OpenLayers.Rule, {
upperBoundary: null, upperBoundary: null,
/** /**
* Constructor: OpenLayers.Rule.Logical * Constructor: OpenLayers.Rule.Comparison
* Creates a logical rule (And, Or, Not). * Creates a comparison rule.
* *
* Parameters: * Parameters:
* params - {Object} Hash of parameters for this rule: * params - {Object} Hash of parameters for this rule:
@@ -75,11 +75,10 @@ OpenLayers.Rule.Comparison = OpenLayers.Class(OpenLayers.Rule, {
* rule * rule
* *
* Returns: * Returns:
* {<OpenLayers.Rule>} * {<OpenLayers.Rule.Comparison>}
*/ */
initialize: function(options) { initialize: function(options) {
OpenLayers.Rule.prototype.initialize.apply( OpenLayers.Rule.prototype.initialize.apply(this, [options]);
this, [options]);
}, },
/** /**
+2 -6
View File
@@ -32,15 +32,11 @@ OpenLayers.Rule.FeatureId = OpenLayers.Class(OpenLayers.Rule, {
* rule * rule
* *
* Returns: * Returns:
* {<OpenLayers.Rule>} * {<OpenLayers.Rule.FeatureId>}
*
* Inherits from:
* - <OpenLayers.Rule>
*/ */
initialize: function(options) { initialize: function(options) {
this.fids = []; this.fids = [];
OpenLayers.Rule.prototype.initialize.apply( OpenLayers.Rule.prototype.initialize.apply(this, [options]);
this, [options]);
}, },
/** /**
+2 -3
View File
@@ -39,12 +39,11 @@ OpenLayers.Rule.Logical = OpenLayers.Class(OpenLayers.Rule, {
* rule * rule
* *
* Returns: * Returns:
* {<OpenLayers.Rule>} * {<OpenLayers.Rule.Logical>}
*/ */
initialize: function(options) { initialize: function(options) {
this.children = []; this.children = [];
OpenLayers.Rule.prototype.initialize.apply( OpenLayers.Rule.prototype.initialize.apply(this, [options]);
this, [options]);
}, },
/** /**