@@ -298,14 +298,14 @@ private static boolean isWhitespace(final int b) {
298298 private final boolean strict ;
299299
300300 /**
301- * Default constructor , assumes default Charset of {@link StandardCharsets#UTF_8}
301+ * Constructs a new instance , assumes default Charset of {@link StandardCharsets#UTF_8}
302302 */
303303 public QuotedPrintableCodec () {
304304 this (StandardCharsets .UTF_8 , false );
305305 }
306306
307307 /**
308- * Constructor which allows for the selection of the strict mode.
308+ * Constructs a new instance for the selection of the strict mode.
309309 *
310310 * @param strict if {@code true}, soft line breaks will be used.
311311 * @since 1.10
@@ -315,7 +315,7 @@ public QuotedPrintableCodec(final boolean strict) {
315315 }
316316
317317 /**
318- * Constructor which allows for the selection of a default Charset.
318+ * Constructs a new instance for the selection of a default Charset.
319319 *
320320 * @param charset the default string Charset to use.
321321 * @since 1.7
@@ -325,7 +325,7 @@ public QuotedPrintableCodec(final Charset charset) {
325325 }
326326
327327 /**
328- * Constructor which allows for the selection of a default Charset and strict mode.
328+ * Constructs a new instance for the selection of a default Charset and strict mode.
329329 *
330330 * @param charset the default string Charset to use.
331331 * @param strict if {@code true}, soft line breaks will be used.
@@ -337,7 +337,7 @@ public QuotedPrintableCodec(final Charset charset, final boolean strict) {
337337 }
338338
339339 /**
340- * Constructor which allows for the selection of a default Charset.
340+ * Constructs a new instance for the selection of a default Charset.
341341 *
342342 * @param charsetName the default string Charset to use.
343343 * @throws UnsupportedCharsetException If no support for the named Charset is available in this instance of the Java virtual machine.
0 commit comments