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 2014/02/27 16:43:58 UTC

[3/7] git commit: [flex-asjs] [refs/heads/develop] - Remove annotations: it is the same as in the parent class, in which case @override takes care of inherited annotations.

Remove annotations: it is the same as in the parent class, in which case @override takes care of inherited annotations.

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


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

Branch: refs/heads/develop
Commit: ca8f5607f526cb77c6527a8b9fdae06e117a4322
Parents: 8aadaec
Author: Erik de Bruin <er...@ixsoftware.nl>
Authored: Thu Feb 27 12:25:38 2014 +0100
Committer: Erik de Bruin <er...@ixsoftware.nl>
Committed: Thu Feb 27 16:43:38 2014 +0100

----------------------------------------------------------------------
 .../js/FlexJS/src/org/apache/flex/events/EventDispatcher.js | 9 ---------
 1 file changed, 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/ca8f5607/frameworks/js/FlexJS/src/org/apache/flex/events/EventDispatcher.js
----------------------------------------------------------------------
diff --git a/frameworks/js/FlexJS/src/org/apache/flex/events/EventDispatcher.js b/frameworks/js/FlexJS/src/org/apache/flex/events/EventDispatcher.js
index 7154167..03393a6 100644
--- a/frameworks/js/FlexJS/src/org/apache/flex/events/EventDispatcher.js
+++ b/frameworks/js/FlexJS/src/org/apache/flex/events/EventDispatcher.js
@@ -44,15 +44,6 @@ org.apache.flex.events.EventDispatcher.prototype.FLEXJS_CLASS_INFO =
 
 /**
  * @override
- * @param {string} type The type of the event to listen for.
- * @param {Function|Object} handler The function to handle the event. The
- *     handler can also be an object that implements the handleEvent method
- *     which takes the event object as argument.
- * @param {boolean=} opt_capture In DOM-compliant browsers, this determines
- *     whether the listener is fired during the capture or bubble phase
- *     of the event.
- * @param {Object=} opt_handlerScope Object in whose scope to call
- *     the listener.
  */
 org.apache.flex.events.EventDispatcher.prototype.addEventListener =
     function(type, handler, opt_capture, opt_handlerScope) {