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/10/27 02:07:35 UTC

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

Author: ggregory
Date: Mon Oct 27 01:07:35 2014
New Revision: 1634427

URL: http://svn.apache.org/r1634427
Log:
Checkstyle: Line is longer than 120 characters.

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

Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32OutputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32OutputStream.java?rev=1634427&r1=1634426&r2=1634427&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32OutputStream.java (original)
+++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base32OutputStream.java Mon Oct 27 01:07:35 2014
@@ -71,8 +71,8 @@ public class Base32OutputStream extends 
      *            true if we should encode all data written to 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 <= 0, the encoded data is not divided into lines. If doEncode is
-     *            false, lineLength is ignored.
+     *            nearest multiple of 4). If lineLength <= 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 <= 0, the lineSeparator is not used. If doEncode is false lineSeparator is ignored.