This is an automated email from the ASF dual-hosted git repository. harbs pushed a commit to branch feature/bead-base in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 68dfc66a94cf4825eed326508f1bf84e1b91ab75 Author: Harbs <[email protected]> AuthorDate: Wed Jan 1 18:16:49 2020 +0200 Missed one --- .../Core/src/main/royale/org/apache/royale/utils/callLater.as | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/callLater.as b/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/callLater.as index decebf5..d6f0fa3 100644 --- a/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/callLater.as +++ b/frameworks/projects/Core/src/main/royale/org/apache/royale/utils/callLater.as @@ -22,7 +22,9 @@ package org.apache.royale.utils { import flash.utils.setTimeout; } - + /** + * @royalesuppressexport + */ public function callLater(fn:Function, args:Array = null, thisArg:Object = null):void { var calls:Array = [ {thisArg: thisArg, fn: fn, args: args } ];
