Skip to content

Commit 722c817

Browse files
committed
Fix checkstyle warnings.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1637069 13f79535-47bb-0310-9956-ffa450edef68
1 parent ad1a469 commit 722c817

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/codec/net/QuotedPrintableCodec.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@
4848
* Depending on the selected {@code strict} parameter, this class will implement a different set of rules of the
4949
* quoted-printable spec:
5050
* <ul>
51-
* <li>{@code strict=false}: only rules #1 and #2 are implemented
51+
* <li>{@code strict=false}: only rules #1 and #2 are implemented
5252
* <li>{@code strict=true}: all rules #1 through #5 are implemented
5353
* </ul>
5454
* Originally, this class only supported the non-strict mode, but the codec in this partial form could already be used
55-
* for certain applications that do not require quoted-printable line formatting (rules #3, #4, #5), for instance Q codec.
56-
* The strict mode has been added in 1.10.
55+
* for certain applications that do not require quoted-printable line formatting (rules #3, #4, #5), for instance
56+
* Q codec. The strict mode has been added in 1.10.
5757
* <p>
5858
* This class is immutable and thread-safe.
5959
*
@@ -278,7 +278,7 @@ public static final byte[] encodeQuotedPrintable(BitSet printable, final byte[]
278278
printable = PRINTABLE_CHARS;
279279
}
280280
final ByteArrayOutputStream buffer = new ByteArrayOutputStream();
281-
281+
282282
if (strict) {
283283
int pos = 1;
284284
// encode up to buffer.length - 3, the last three octets will be treated

0 commit comments

Comments
 (0)