Depreacte Suppliers 0-argument contructor

This commit is contained in:
Gary Gregory 2024-01-25 09:29:31 -05:00
parent 3c0d417abb
commit e8d80db854
1 changed files with 9 additions and 0 deletions

View File

@ -61,4 +61,13 @@ public class Suppliers {
return NUL;
}
/**
* Make private in 4.0.
*
* @deprecated TODO Make private in 4.0.
*/
@Deprecated
public Suppliers() {
// empty
}
}