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 2014/04/10 15:50:21 UTC

svn commit: r1586299 - /commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32InputStream.java

Author: ggregory
Date: Thu Apr 10 13:50:21 2014
New Revision: 1586299

URL: http://svn.apache.org/r1586299
Log:
Checkstyle line length <= 120.

Modified:
    commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32InputStream.java

Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32InputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32InputStream.java?rev=1586299&r1=1586298&r2=1586299&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32InputStream.java (original)
+++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32InputStream.java Thu Apr 10 13:50:21 2014
@@ -71,8 +71,8 @@ public class Base32InputStream extends B
      *            true if we should encode all data read from us, false if we should decode.
      * @param lineLength
      *            If doEncode is true, each line of encoded data will contain lineLength characters (rounded down to
-     *            nearest multiple of 4). If lineLength &lt;= 0, the encoded data is not divided into lines. If doEncode is
-     *            false, lineLength is ignored.
+     *            nearest multiple of 4). If lineLength &lt;= 0, the encoded data is not divided into lines. If doEncode
+     *            is false, lineLength is ignored.
      * @param lineSeparator
      *            If doEncode is true, each line of encoded data will be terminated with this byte sequence (e.g. \r\n).
      *            If lineLength &lt;= 0, the lineSeparator is not used. If doEncode is false lineSeparator is ignored.