You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by cd...@apache.org on 2016/04/18 15:26:48 UTC

[25/50] git commit: [flex-asjs] [refs/heads/feature/maven-migration] - Worked around FLEX-35067 Fixed typo

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/feature/maven-migration
Commit: 40d5bf39e520389765de3f4d7bff21bf0540bc0b
Parents: 90c70ce
Author: Harbs <ha...@in-tools.com>
Authored: Sun Apr 10 17:38:57 2016 +0300
Committer: Harbs <ha...@in-tools.com>
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]));
 			}