You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by er...@apache.org on 2013/11/13 11:52:23 UTC

[4/9] git commit: [flex-falcon] [refs/heads/develop] - Changed the test file to correct a mistake in the @param type emission.

Changed the test file to correct a mistake in the @param type emission.

Signed-off-by: Erik de Bruin <er...@ixsoftware.nl>


Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/44fbfcd0
Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/44fbfcd0
Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/44fbfcd0

Branch: refs/heads/develop
Commit: 44fbfcd01f18230937bdfd93f66370b50605a650
Parents: d98ce9d
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Wed Nov 13 10:00:03 2013 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Wed Nov 13 10:00:03 2013 +0100

----------------------------------------------------------------------
 .../test-files/flexjs/files/MyInitialView_result.js              | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/44fbfcd0/compiler.jx.tests/test-files/flexjs/files/MyInitialView_result.js
----------------------------------------------------------------------
diff --git a/compiler.jx.tests/test-files/flexjs/files/MyInitialView_result.js b/compiler.jx.tests/test-files/flexjs/files/MyInitialView_result.js
index 0f29b72..0037b48 100644
--- a/compiler.jx.tests/test-files/flexjs/files/MyInitialView_result.js
+++ b/compiler.jx.tests/test-files/flexjs/files/MyInitialView_result.js
@@ -223,7 +223,7 @@ MyInitialView.prototype.get_comboBoxValue = function() {
 
 /**
  * @expose
- * @param {org.apache.flex.events.org.apache.flex.events.Event} event
+ * @param {org.apache.flex.events.Event} event
  */
 MyInitialView.prototype.startTimer = function(event) {
   this.timer = new org.apache.flex.utils.Timer(1000);
@@ -234,7 +234,7 @@ MyInitialView.prototype.startTimer = function(event) {
 
 /**
  * @expose
- * @param {org.apache.flex.events.org.apache.flex.events.Event} event
+ * @param {org.apache.flex.events.Event} event
  */
 MyInitialView.prototype.timerHandler = function(event) {
   this.get_timerLabel().set_text(this.timer.get_currentCount().toString());