Repository: flex-asjs Updated Branches: refs/heads/e4x 90c70cea4 -> 40d5bf39e
Worked around FLEX-35067 Fixed typo Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/40d5bf39 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/40d5bf39 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/40d5bf39 Branch: refs/heads/e4x Commit: 40d5bf39e520389765de3f4d7bff21bf0540bc0b Parents: 90c70ce Author: Harbs <[email protected]> Authored: Sun Apr 10 17:38:57 2016 +0300 Committer: Harbs <[email protected]> Committed: Sun Apr 10 17:38:57 2016 +0300 ---------------------------------------------------------------------- frameworks/projects/XML/src/main/flex/XML.as | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/40d5bf39/frameworks/projects/XML/src/main/flex/XML.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/XML/src/main/flex/XML.as b/frameworks/projects/XML/src/main/flex/XML.as index b2222b6..93ba2b1 100644 --- a/frameworks/projects/XML/src/main/flex/XML.as +++ b/frameworks/projects/XML/src/main/flex/XML.as @@ -265,11 +265,11 @@ package static public function defaultSettings():Object { return { - ignoreComments : true, - ignoreProcessingInstructions : true, - ignoreWhitespace : true, - prettyIndent : 2, - prettyPrinting : true + "ignoreComments" : true, + "ignoreProcessingInstructions" : true, + "ignoreWhitespace" : true, + "prettyIndent" : 2, + "prettyPrinting" : true } } @@ -301,11 +301,11 @@ package static public function settings():Object { return { - ignoreComments : ignoreComments, - ignoreProcessingInstructions : ignoreProcessingInstructions, - ignoreWhitespace : ignoreWhitespace, - prettyIndent : prettyIndent, - prettyPrinting : prettyPrinting + "ignoreComments" : ignoreComments, + "ignoreProcessingInstructions" : ignoreProcessingInstructions, + "ignoreWhitespace" : ignoreWhitespace, + "prettyIndent" : prettyIndent, + "prettyPrinting" : prettyPrinting } } @@ -711,7 +711,7 @@ package xml.setNodeKind(_nodeKind); xml.setName(name()); xml.setValue(_value); - for(i-0;i<_namespaces.length;i++) + for(i=0;i<_namespaces.length;i++) { xml.addNamespace(new Namespace(_namespaces[i])); }
