You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ha...@apache.org on 2016/04/07 03:49:03 UTC

git commit: [flex-asjs] [refs/heads/e4x] - typo

Repository: flex-asjs
Updated Branches:
  refs/heads/e4x dbcc3b118 -> 1c5e98db9


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/1c5e98db
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/1c5e98db
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/1c5e98db

Branch: refs/heads/e4x
Commit: 1c5e98db9ceb3ca115715d4459d770ba23d35c4f
Parents: dbcc3b1
Author: Harbs <ha...@in-tools.com>
Authored: Wed Apr 6 18:48:54 2016 -0700
Committer: Harbs <ha...@in-tools.com>
Committed: Wed Apr 6 18:48:54 2016 -0700

----------------------------------------------------------------------
 manualtests/XMLTest/src/MyInitialView.mxml | 13 +++----------
 1 file changed, 3 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1c5e98db/manualtests/XMLTest/src/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/manualtests/XMLTest/src/MyInitialView.mxml b/manualtests/XMLTest/src/MyInitialView.mxml
index 0f9eab0..c611565 100644
--- a/manualtests/XMLTest/src/MyInitialView.mxml
+++ b/manualtests/XMLTest/src/MyInitialView.mxml
@@ -37,23 +37,16 @@ limitations under the License.
 			import org.apache.flex.events.Event;
 			import org.apache.flex.utils.UIUtils;
 						
-            import org.apache.flex.reflection.describeType;
-            import org.apache.flex.reflection.MetaDataArgDefinition;
-            import org.apache.flex.reflection.MetaDataDefinition;
-            import org.apache.flex.reflection.MethodDefinition;
-            import org.apache.flex.reflection.TypeDefinition;
-            
+            import XML;
+
             [Event(name="foo", type="org.apache.flex.events.Event")]
             public function runTest():void
             {
-                var metadata:Array;
-                var mtd:MetaDataDefinition;
-                var mtdarg:MetaDataArgDefinition;
                 var args:Array;
                 var j:int;
                 var m:int;
                 var xml1:XML = <foo baz="true"/>;
-                trace(xmll1);
+                trace(xml1);
                 trace(xml1.baz);
 
             }