From 8de5ddbfbd36574e86679666f3a2e02dc35d1d85 Mon Sep 17 00:00:00 2001 From: Chris Speciale Date: Thu, 2 Mar 2023 14:02:39 -0500 Subject: [PATCH] BackgroundWorker: Update warning Minor mistake. I'm tired.. --- src/lime/system/BackgroundWorker.hx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lime/system/BackgroundWorker.hx b/src/lime/system/BackgroundWorker.hx index 7ad8954d6..19b971130 100644 --- a/src/lime/system/BackgroundWorker.hx +++ b/src/lime/system/BackgroundWorker.hx @@ -18,9 +18,10 @@ import neko.vm.Thread; @:fileXml('tags="haxe,release"') @:noDebug #end +@:deprecated("lime.system.BackgroundWorker is being deprecated since Lime 8.2.0, and it is recommended to use the lime.system.ThreadPool class instead.") + class BackgroundWorker { -@:deprecated("Lime.system.BackgroundWorker is being deprecated since Lime 8.2.0, and it is recommended to use the Lime.system.ThreadPool class instead.") private static var MESSAGE_COMPLETE = "__COMPLETE__"; private static var MESSAGE_ERROR = "__ERROR__";