You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ma...@apache.org on 2017/12/05 10:02:46 UTC

commons-io git commit: Add/remove blank lines in Javadoc to aid clarity

Repository: commons-io
Updated Branches:
  refs/heads/master c1b64e9d7 -> 65c4a9c0e


Add/remove blank lines in Javadoc to aid clarity


Project: http://git-wip-us.apache.org/repos/asf/commons-io/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-io/commit/65c4a9c0
Tree: http://git-wip-us.apache.org/repos/asf/commons-io/tree/65c4a9c0
Diff: http://git-wip-us.apache.org/repos/asf/commons-io/diff/65c4a9c0

Branch: refs/heads/master
Commit: 65c4a9c0ec651dd99f28b9fae40378728d071985
Parents: c1b64e9
Author: Mark Thomas <ma...@apache.org>
Authored: Tue Dec 5 10:02:20 2017 +0000
Committer: Mark Thomas <ma...@apache.org>
Committed: Tue Dec 5 10:02:20 2017 +0000

----------------------------------------------------------------------
 src/main/java/org/apache/commons/io/FileUtils.java                | 1 -
 src/main/java/org/apache/commons/io/IOUtils.java                  | 3 ++-
 .../java/org/apache/commons/io/output/ByteArrayOutputStream.java  | 1 -
 .../org/apache/commons/io/output/DeferredFileOutputStream.java    | 1 -
 .../org/apache/commons/io/output/ThresholdingOutputStream.java    | 1 -
 5 files changed, 2 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-io/blob/65c4a9c0/src/main/java/org/apache/commons/io/FileUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/io/FileUtils.java b/src/main/java/org/apache/commons/io/FileUtils.java
index 00bf356..714f4c8 100644
--- a/src/main/java/org/apache/commons/io/FileUtils.java
+++ b/src/main/java/org/apache/commons/io/FileUtils.java
@@ -74,7 +74,6 @@ import org.apache.commons.io.output.NullOutputStream;
  * Only use the default if the files are known to always use the platform default.
  * <p>
  * Origin of code: Excalibur, Alexandria, Commons-Utils
- *
  */
 public class FileUtils {
 

http://git-wip-us.apache.org/repos/asf/commons-io/blob/65c4a9c0/src/main/java/org/apache/commons/io/IOUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/io/IOUtils.java b/src/main/java/org/apache/commons/io/IOUtils.java
index 8b2fe95..566bd17 100644
--- a/src/main/java/org/apache/commons/io/IOUtils.java
+++ b/src/main/java/org/apache/commons/io/IOUtils.java
@@ -94,7 +94,6 @@ import org.apache.commons.io.output.StringBuilderWriter;
  * closing streams after use.
  * <p>
  * Origin of code: Excalibur.
- *
  */
 public class IOUtils {
     // NOTE: This class is focused on InputStream, OutputStream, Reader and
@@ -3173,6 +3172,7 @@ public class IOUtils {
      * @param buffer destination
      * @param offset initial offset into buffer
      * @param length length to read, must be &gt;= 0
+     *
      * @throws IOException              if there is a problem reading the file
      * @throws IllegalArgumentException if length is negative
      * @throws EOFException             if the number of bytes read was incorrect
@@ -3194,6 +3194,7 @@ public class IOUtils {
      *
      * @param input where to read input from
      * @param buffer destination
+     *
      * @throws IOException              if there is a problem reading the file
      * @throws IllegalArgumentException if length is negative
      * @throws EOFException             if the number of bytes read was incorrect

http://git-wip-us.apache.org/repos/asf/commons-io/blob/65c4a9c0/src/main/java/org/apache/commons/io/output/ByteArrayOutputStream.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/io/output/ByteArrayOutputStream.java b/src/main/java/org/apache/commons/io/output/ByteArrayOutputStream.java
index 499aeee..c84721a 100644
--- a/src/main/java/org/apache/commons/io/output/ByteArrayOutputStream.java
+++ b/src/main/java/org/apache/commons/io/output/ByteArrayOutputStream.java
@@ -51,7 +51,6 @@ import org.apache.commons.io.input.ClosedInputStream;
  * the contents don't have to be copied to the new buffer. This class is
  * designed to behave exactly like the original. The only exception is the
  * deprecated toString(int) method that has been ignored.
- *
  */
 public class ByteArrayOutputStream extends OutputStream {
 

http://git-wip-us.apache.org/repos/asf/commons-io/blob/65c4a9c0/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java b/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java
index 12bc0a2..4165205 100644
--- a/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java
+++ b/src/main/java/org/apache/commons/io/output/DeferredFileOutputStream.java
@@ -36,7 +36,6 @@ import org.apache.commons.io.IOUtils;
  * not know in advance the size of the file being uploaded. If the file is small
  * you want to store it in memory (for speed), but if the file is large you want
  * to store it to file (to avoid memory issues).
- *
  */
 public class DeferredFileOutputStream
     extends ThresholdingOutputStream

http://git-wip-us.apache.org/repos/asf/commons-io/blob/65c4a9c0/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java b/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java
index 843ec05..4fe99f4 100644
--- a/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java
+++ b/src/main/java/org/apache/commons/io/output/ThresholdingOutputStream.java
@@ -33,7 +33,6 @@ import java.io.OutputStream;
  * NOTE: This implementation may trigger the event <em>before</em> the threshold
  * is actually reached, since it triggers when a pending write operation would
  * cause the threshold to be exceeded.
- *
  */
 public abstract class ThresholdingOutputStream
     extends OutputStream