FLEX-34294: Create a base Class for workers making them debuggable via FDB - Adjusted minimum AIR version and typo.
Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/9a29feb3 Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/9a29feb3 Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/9a29feb3 Branch: refs/heads/master Commit: 9a29feb368d61262e9462133507c80b956905bfc Parents: f7fdee9 Author: Fr�d�ric THMOAS <[email protected]> Authored: Mon Jun 9 12:52:11 2014 +0100 Committer: Fr�d�ric THMOAS <[email protected]> Committed: Mon Jun 9 12:52:11 2014 +0100 ---------------------------------------------------------------------- frameworks/projects/framework/src/mx/core/DebuggableWorker.as | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/9a29feb3/frameworks/projects/framework/src/mx/core/DebuggableWorker.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/framework/src/mx/core/DebuggableWorker.as b/frameworks/projects/framework/src/mx/core/DebuggableWorker.as index ad98bb5..415a55d 100644 --- a/frameworks/projects/framework/src/mx/core/DebuggableWorker.as +++ b/frameworks/projects/framework/src/mx/core/DebuggableWorker.as @@ -28,7 +28,7 @@ import flash.utils.setInterval; * it allows the debugging of those workers using FDB. * * @langversion 3.0 - * @playerversion Flash 10 + * @playerversion Flash 11.4 * @playerversion AIR 3.4 * @productversion Flex 4 */ @@ -49,7 +49,7 @@ public class DebuggableWorker extends Sprite { /** * @private - * This is here so we get the this pointer set to Application. + * This is here so we get the "this" pointer set to this worker instance. */ private function debugTickler():void { // We need some bytes of code in order to have a place to break.
