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


The following commit(s) were added to refs/heads/master by this push:
     new df37ca85 Javadoc
df37ca85 is described below

commit df37ca856a46ff256044c6f696615b9102e108b3
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Apr 1 08:14:28 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/codec/net/BCodec.java         |  8 ++++----
 src/main/java/org/apache/commons/codec/net/QCodec.java         |  6 +++---
 .../org/apache/commons/codec/net/QuotedPrintableCodec.java     | 10 +++++-----
 src/main/java/org/apache/commons/codec/net/URLCodec.java       |  2 +-
 4 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/src/main/java/org/apache/commons/codec/net/BCodec.java 
b/src/main/java/org/apache/commons/codec/net/BCodec.java
index af46d887..79d77115 100644
--- a/src/main/java/org/apache/commons/codec/net/BCodec.java
+++ b/src/main/java/org/apache/commons/codec/net/BCodec.java
@@ -61,14 +61,14 @@ public class BCodec extends RFC1522Codec implements 
StringEncoder, StringDecoder
     private final CodecPolicy decodingPolicy;
 
     /**
-     * Default constructor.
+     * Constructs a new instance.
      */
     public BCodec() {
         this(StandardCharsets.UTF_8);
     }
 
     /**
-     * Constructor which allows for the selection of a default Charset
+     * Constructs a new instance for the selection of a default Charset.
      *
      * @param charset
      *            the default string Charset to use.
@@ -81,7 +81,7 @@ public class BCodec extends RFC1522Codec implements 
StringEncoder, StringDecoder
     }
 
     /**
-     * Constructor which allows for the selection of a default Charset.
+     * Constructs a new instance for the selection of a default Charset.
      *
      * @param charset
      *            the default string Charset to use.
@@ -95,7 +95,7 @@ public class BCodec extends RFC1522Codec implements 
StringEncoder, StringDecoder
     }
 
     /**
-     * Constructor which allows for the selection of a default Charset
+     * Constructs a new instance for the selection of a default Charset.
      *
      * @param charsetName
      *            the default Charset to use.
diff --git a/src/main/java/org/apache/commons/codec/net/QCodec.java 
b/src/main/java/org/apache/commons/codec/net/QCodec.java
index 8213b40a..658f8c0d 100644
--- a/src/main/java/org/apache/commons/codec/net/QCodec.java
+++ b/src/main/java/org/apache/commons/codec/net/QCodec.java
@@ -108,14 +108,14 @@ public class QCodec extends RFC1522Codec implements 
StringEncoder, StringDecoder
     private boolean encodeBlanks;
 
     /**
-     * Default constructor.
+     * Constructs a new instance.
      */
     public QCodec() {
         this(StandardCharsets.UTF_8);
     }
 
     /**
-     * Constructor which allows for the selection of a default Charset.
+     * Constructs a new instance for the selection of a default Charset.
      *
      * @param charset
      *            the default string Charset to use.
@@ -128,7 +128,7 @@ public class QCodec extends RFC1522Codec implements 
StringEncoder, StringDecoder
     }
 
     /**
-     * Constructor which allows for the selection of a default Charset.
+     * Constructs a new instance for the selection of a default Charset.
      *
      * @param charsetName
      *            the Charset to use.
diff --git 
a/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java 
b/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java
index 62a71f96..61791aef 100644
--- a/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java
+++ b/src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java
@@ -298,14 +298,14 @@ public class QuotedPrintableCodec implements 
BinaryEncoder, BinaryDecoder, Strin
     private final boolean strict;
 
     /**
-     * Default constructor, assumes default Charset of {@link 
StandardCharsets#UTF_8}
+     * Constructs a new instance, assumes default Charset of {@link 
StandardCharsets#UTF_8}
      */
     public QuotedPrintableCodec() {
         this(StandardCharsets.UTF_8, false);
     }
 
     /**
-     * Constructor which allows for the selection of the strict mode.
+     * Constructs a new instance for the selection of the strict mode.
      *
      * @param strict if {@code true}, soft line breaks will be used.
      * @since 1.10
@@ -315,7 +315,7 @@ public class QuotedPrintableCodec implements BinaryEncoder, 
BinaryDecoder, Strin
     }
 
     /**
-     * Constructor which allows for the selection of a default Charset.
+     * Constructs a new instance for the selection of a default Charset.
      *
      * @param charset the default string Charset to use.
      * @since 1.7
@@ -325,7 +325,7 @@ public class QuotedPrintableCodec implements BinaryEncoder, 
BinaryDecoder, Strin
     }
 
     /**
-     * Constructor which allows for the selection of a default Charset and 
strict mode.
+     * Constructs a new instance for the selection of a default Charset and 
strict mode.
      *
      * @param charset the default string Charset to use.
      * @param strict  if {@code true}, soft line breaks will be used.
@@ -337,7 +337,7 @@ public class QuotedPrintableCodec implements BinaryEncoder, 
BinaryDecoder, Strin
     }
 
     /**
-     * Constructor which allows for the selection of a default Charset.
+     * Constructs a new instance for the selection of a default Charset.
      *
      * @param charsetName the default string Charset to use.
      * @throws UnsupportedCharsetException If no support for the named Charset 
is available in this instance of the Java virtual machine.
diff --git a/src/main/java/org/apache/commons/codec/net/URLCodec.java 
b/src/main/java/org/apache/commons/codec/net/URLCodec.java
index 64c38a58..20f25e25 100644
--- a/src/main/java/org/apache/commons/codec/net/URLCodec.java
+++ b/src/main/java/org/apache/commons/codec/net/URLCodec.java
@@ -179,7 +179,7 @@ public class URLCodec implements BinaryEncoder, 
BinaryDecoder, StringEncoder, St
     }
 
     /**
-     * Constructor which allows for the selection of a default charset.
+     * Constructs a new instance for the selection of a default charset.
      *
      * @param charset the default string charset to use.
      */

Reply via email to