You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2024/01/25 14:56:35 UTC

(commons-lang) 07/41: Depreacte CharUtils 0-argument contructor

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-lang.git

commit ba5d35fcae8c22c34da6461e5c99302d61cafa5c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Jan 25 09:16:51 2024 -0500

    Depreacte CharUtils 0-argument contructor
---
 src/main/java/org/apache/commons/lang3/CharUtils.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/main/java/org/apache/commons/lang3/CharUtils.java b/src/main/java/org/apache/commons/lang3/CharUtils.java
index 61c16b793..c524f4cbc 100644
--- a/src/main/java/org/apache/commons/lang3/CharUtils.java
+++ b/src/main/java/org/apache/commons/lang3/CharUtils.java
@@ -515,7 +515,11 @@ public class CharUtils {
      *
      * <p>This constructor is public to permit tools that require a JavaBean instance
      * to operate.</p>
+     *
+     * @deprecated TODO Make private in 4.0.
      */
+    @Deprecated
     public CharUtils() {
+        // empty
     }
 }