From b7dd45586ce8e041ebc5fe78604260c423a11abc Mon Sep 17 00:00:00 2001 From: Joseph Cloutier Date: Sun, 18 Aug 2024 21:42:44 -0400 Subject: [PATCH] Haxe expects documentation above metadata. --- src/lime/system/BackgroundWorker.hx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lime/system/BackgroundWorker.hx b/src/lime/system/BackgroundWorker.hx index ba1b7340a..1a250062e 100644 --- a/src/lime/system/BackgroundWorker.hx +++ b/src/lime/system/BackgroundWorker.hx @@ -14,10 +14,6 @@ import neko.vm.Deque; import neko.vm.Thread; #end #end -#if !lime_debug -@:fileXml('tags="haxe,release"') -@:noDebug -#end /** A background worker executes a single function on a background thread, @@ -25,6 +21,10 @@ import neko.vm.Thread; have thread support, meaning the function will block on any other target. @see `ThreadPool` for improved thread safety, HTML5 threads, and more. **/ +#if !lime_debug +@:fileXml('tags="haxe,release"') +@:noDebug +#end class BackgroundWorker { private static var MESSAGE_COMPLETE = "__COMPLETE__";