Depreacte LockingVisitors 0-argument contructor

This commit is contained in:
Gary Gregory 2024-01-25 09:26:48 -05:00
parent e04b2bd942
commit 32196a11ad
1 changed files with 9 additions and 0 deletions

View File

@ -383,4 +383,13 @@ public class LockingVisitors {
return new LockingVisitors.StampedLockVisitor<>(object, new StampedLock());
}
/**
* Make private in 4.0.
*
* @deprecated TODO Make private in 4.0.
*/
@Deprecated
public LockingVisitors() {
// empty
}
}