Deprecate IterableUtils 0-argument constructor

This commit is contained in:
Gary Gregory 2024-01-26 10:18:49 -05:00
parent 47c5862fb0
commit 497153c743
2 changed files with 12 additions and 0 deletions

View File

@ -203,6 +203,9 @@
<action dev="ggregory" type="fix" due-to="Martin Wiesner, Bruno P. Kinoshita, Gary Gregory">
Fix punctuation and minor Javadoc issues #409.
</action>
<action dev="ggregory" type="fix" due-to="Gary Gregory">
Deprecate IterableUtils 0-argument constructor.
</action>
<!-- ADD -->
<action issue="COLLECTIONS-843" dev="ggregory" type="add" due-to="Claude Warren, Alex Herbert, Gary Gregory">
Implement Layered Bloom filter #402.

View File

@ -1040,4 +1040,13 @@ public class IterableUtils {
};
}
/**
* Make private in 5.0.
*
* @deprecated TODO Make private in 5.0.
*/
@Deprecated
public IterableUtils() {
// empty
}
}