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:08:37 UTC

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

Author: ggregory
Date: Mon Oct 27 01:08:36 2014
New Revision: 1634429

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

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

Modified: commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base64InputStream.java
URL: http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base64InputStream.java?rev=1634429&r1=1634428&r2=1634429&view=diff
==============================================================================
--- commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base64InputStream.java (original)
+++ commons/proper/codec/trunk/src/main/java/org/apache/commons/codec/binary/Base64InputStream.java Mon Oct 27 01:08:36 2014
@@ -75,8 +75,8 @@ public class Base64InputStream 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 <= 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.