Depreacte IntStreams 0-argument contructor

This commit is contained in:
Gary Gregory 2024-01-25 09:34:32 -05:00
parent 8926ed1c63
commit 0ef9b755ad
1 changed files with 9 additions and 0 deletions

View File

@ -48,4 +48,13 @@ public class IntStreams {
return IntStream.rangeClosed(0, endInclusive);
}
/**
* Make private in 4.0.
*
* @deprecated TODO Make private in 4.0.
*/
@Deprecated
public IntStreams() {
// empty
}
}