Updated Branches: refs/heads/develop_strictest d98ce9dc2 -> 39e91cb75
Changed the test file to correct a mistake in the @param type emission. Signed-off-by: Erik de Bruin <e...@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_strictest Commit: 44fbfcd01f18230937bdfd93f66370b50605a650 Parents: d98ce9d Author: Erik de Bruin <e...@ixsoftware.nl> Authored: Wed Nov 13 10:00:03 2013 +0100 Committer: Erik de Bruin <e...@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());