From 9b9d433ce80b59cb9c758e2c08e64ca212feff2b Mon Sep 17 00:00:00 2001 From: Joseph Cloutier Date: Thu, 2 Mar 2023 14:30:23 -0500 Subject: [PATCH] Add deprecation warning to `BackgroundWorker`. I also reworded it, focusing on what to do. --- src/lime/system/BackgroundWorker.hx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lime/system/BackgroundWorker.hx b/src/lime/system/BackgroundWorker.hx index f9d922e7c..5be17e9ea 100644 --- a/src/lime/system/BackgroundWorker.hx +++ b/src/lime/system/BackgroundWorker.hx @@ -1,3 +1,4 @@ package lime.system; +@:deprecated("Replace references to lime.system.BackgroundWorker with lime.system.ThreadPool. As the API is identical, no other changes are necessary.") typedef BackgroundWorker = ThreadPool;