This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-io.git
commit a8c441d645eeca0da4e0b5e6e1ad8e2d15f2c9e2 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Thu Jan 25 10:05:03 2024 -0500 Depreacte RandomAccessFiles 0-argument contructor --- src/main/java/org/apache/commons/io/RandomAccessFiles.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/java/org/apache/commons/io/RandomAccessFiles.java b/src/main/java/org/apache/commons/io/RandomAccessFiles.java index 0e0140b6..7d3a223b 100644 --- a/src/main/java/org/apache/commons/io/RandomAccessFiles.java +++ b/src/main/java/org/apache/commons/io/RandomAccessFiles.java @@ -95,4 +95,13 @@ public class RandomAccessFiles { return raf; } + /** + * Make private in 3.0. + * + * @deprecated TODO Make private in 3.0. + */ + @Deprecated + public RandomAccessFiles() { + // empty + } }