Depreacte ThreadUtils 0-argument contructor

This commit is contained in:
Gary Gregory 2024-01-25 09:26:11 -05:00
parent 235a874ea1
commit e04b2bd942
1 changed files with 5 additions and 3 deletions

View File

@ -570,13 +570,15 @@ public class ThreadUtils {
} }
/** /**
* ThreadUtils instances should NOT be constructed in standard programming. Instead, the class should be used as * ThreadUtils instances should NOT be constructed in standard programming. Instead, the class should be used as {@code ThreadUtils.getAllThreads()}
* {@code ThreadUtils.getAllThreads()}
*
* <p> * <p>
* This constructor is public to permit tools that require a JavaBean instance to operate. * This constructor is public to permit tools that require a JavaBean instance to operate.
* </p> * </p>
*
* @deprecated TODO Make private in 4.0.
*/ */
@Deprecated
public ThreadUtils() { public ThreadUtils() {
// empty
} }
} }