Skip to content

Commit 65c4a9c

Browse files
committed
Add/remove blank lines in Javadoc to aid clarity
1 parent c1b64e9 commit 65c4a9c

5 files changed

Lines changed: 2 additions & 5 deletions

File tree

src/main/java/org/apache/commons/io/FileUtils.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@
7474
* Only use the default if the files are known to always use the platform default.
7575
* <p>
7676
* Origin of code: Excalibur, Alexandria, Commons-Utils
77-
*
7877
*/
7978
public class FileUtils {
8079

src/main/java/org/apache/commons/io/IOUtils.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@
9494
* closing streams after use.
9595
* <p>
9696
* Origin of code: Excalibur.
97-
*
9897
*/
9998
public class IOUtils {
10099
// NOTE: This class is focused on InputStream, OutputStream, Reader and
@@ -3173,6 +3172,7 @@ public static void readFully(final Reader input, final char[] buffer) throws IOE
31733172
* @param buffer destination
31743173
* @param offset initial offset into buffer
31753174
* @param length length to read, must be &gt;= 0
3175+
*
31763176
* @throws IOException if there is a problem reading the file
31773177
* @throws IllegalArgumentException if length is negative
31783178
* @throws EOFException if the number of bytes read was incorrect
@@ -3194,6 +3194,7 @@ public static void readFully(final InputStream input, final byte[] buffer, final
31943194
*
31953195
* @param input where to read input from
31963196
* @param buffer destination
3197+
*
31973198
* @throws IOException if there is a problem reading the file
31983199
* @throws IllegalArgumentException if length is negative
31993200
* @throws EOFException if the number of bytes read was incorrect

src/main/java/org/apache/commons/io/output/ByteArrayOutputStream.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
* the contents don't have to be copied to the new buffer. This class is
5252
* designed to behave exactly like the original. The only exception is the
5353
* deprecated toString(int) method that has been ignored.
54-
*
5554
*/
5655
public class ByteArrayOutputStream extends OutputStream {
5756

src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
* not know in advance the size of the file being uploaded. If the file is small
3737
* you want to store it in memory (for speed), but if the file is large you want
3838
* to store it to file (to avoid memory issues).
39-
*
4039
*/
4140
public class DeferredFileOutputStream
4241
extends ThresholdingOutputStream

src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
* NOTE: This implementation may trigger the event <em>before</em> the threshold
3434
* is actually reached, since it triggers when a pending write operation would
3535
* cause the threshold to be exceeded.
36-
*
3736
*/
3837
public abstract class ThresholdingOutputStream
3938
extends OutputStream

0 commit comments

Comments
 (0)