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 93497c5a70e03d05bd720df942bf3b330452a180 Author: Gary Gregory <[email protected]> AuthorDate: Thu Jan 25 09:58:47 2024 -0500 Depreacte EndianUtils 0-argument contructor --- src/main/java/org/apache/commons/io/EndianUtils.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/org/apache/commons/io/EndianUtils.java b/src/main/java/org/apache/commons/io/EndianUtils.java index 9a0cc9d8..6cbe9497 100644 --- a/src/main/java/org/apache/commons/io/EndianUtils.java +++ b/src/main/java/org/apache/commons/io/EndianUtils.java @@ -450,7 +450,11 @@ public class EndianUtils { /** * Instances should NOT be constructed in standard programming. + * + * @deprecated TODO Make private in 4.0. */ + @Deprecated public EndianUtils() { + // empty } }
