Skip to content

Commit

Permalink
Deprecate IterableUtils 0-argument constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 26, 2024
1 parent 47c5862 commit 497153c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/changes/changes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1040,4 +1040,13 @@ public Iterator<E> iterator() {
};
}

/**
* Make private in 5.0.
*
* @deprecated TODO Make private in 5.0.
*/
@Deprecated
public IterableUtils() {
// empty
}
}

0 comments on commit 497153c

Please sign in to comment.