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 2019/08/09 21:14:10 UTC

[commons-io] 01/06: Remove trailing white spaces on all lines

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-io.git

commit 4bbdbfed1d810e7558594aea59f2c819f95cbed3
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Aug 9 14:07:57 2019 -0400

    Remove trailing white spaces on all lines
---
 src/main/java/org/apache/commons/io/IOExceptionList.java          | 8 ++++----
 src/main/java/org/apache/commons/io/input/TaggedReader.java       | 4 ++--
 .../java/org/apache/commons/io/output/FilterCollectionWriter.java | 2 +-
 src/main/java/org/apache/commons/io/output/TeeWriter.java         | 2 +-
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/IOExceptionList.java b/src/main/java/org/apache/commons/io/IOExceptionList.java
index f6aeec4..cdfffca 100644
--- a/src/main/java/org/apache/commons/io/IOExceptionList.java
+++ b/src/main/java/org/apache/commons/io/IOExceptionList.java
@@ -48,7 +48,7 @@ public class IOExceptionList extends IOException {
 
     /**
      * Gets the cause list.
-     * 
+     *
      * @param <T> type of exception to return.
      * @return The list of causes.
      */
@@ -58,7 +58,7 @@ public class IOExceptionList extends IOException {
 
     /**
      * Gets the cause list.
-     * 
+     *
      * @param <T> type of exception to return.
      * @param index index in the cause list.
      * @return The list of causes.
@@ -69,7 +69,7 @@ public class IOExceptionList extends IOException {
 
     /**
      * Gets the cause list.
-     * 
+     *
      * @param <T> type of exception to return.
      * @param index index in the cause list.
      * @param clazz type of exception to return.
@@ -81,7 +81,7 @@ public class IOExceptionList extends IOException {
 
     /**
      * Works around Throwable and Generics, may fail at runtime depending on the argument value.
-     * 
+     *
      * @param <T> type of exception to return.
      * @param clazz the target type
      * @return The list of causes.
diff --git a/src/main/java/org/apache/commons/io/input/TaggedReader.java b/src/main/java/org/apache/commons/io/input/TaggedReader.java
index 0227dd9..4711414 100644
--- a/src/main/java/org/apache/commons/io/input/TaggedReader.java
+++ b/src/main/java/org/apache/commons/io/input/TaggedReader.java
@@ -27,7 +27,7 @@ import org.apache.commons.io.TaggedIOException;
  * A reader decorator that tags potential exceptions so that the reader that caused the exception can easily be
  * identified. This is done by using the {@link TaggedIOException} class to wrap all thrown {@link IOException}s. See
  * below for an example of using this class.
- * 
+ *
  * <pre>
  * TaggedReader reader = new TaggedReader(...);
  * try {
@@ -47,7 +47,7 @@ import org.apache.commons.io.TaggedIOException;
  * Alternatively, the {@link #throwIfCauseOf(Throwable)} method can be used to let higher levels of code handle the
  * exception caused by this reader while other processing errors are being taken care of at this lower level.
  * </p>
- * 
+ *
  * <pre>
  * TaggedReader reader = new TaggedReader(...);
  * try {
diff --git a/src/main/java/org/apache/commons/io/output/FilterCollectionWriter.java b/src/main/java/org/apache/commons/io/output/FilterCollectionWriter.java
index ed9114c..2bdb607 100644
--- a/src/main/java/org/apache/commons/io/output/FilterCollectionWriter.java
+++ b/src/main/java/org/apache/commons/io/output/FilterCollectionWriter.java
@@ -40,7 +40,7 @@ import org.apache.commons.io.IOIndexedException;
  * The class {@link Writer} defines method signatures with {@code throws} {@link IOException}, which in this class are
  * actually {@link IOExceptionList} containing a list of {@link IOIndexedException}.
  * </p>
- * 
+ *
  * @since 2.7
  */
 public class FilterCollectionWriter extends Writer {
diff --git a/src/main/java/org/apache/commons/io/output/TeeWriter.java b/src/main/java/org/apache/commons/io/output/TeeWriter.java
index 3fc0168..e373bc1 100644
--- a/src/main/java/org/apache/commons/io/output/TeeWriter.java
+++ b/src/main/java/org/apache/commons/io/output/TeeWriter.java
@@ -26,7 +26,7 @@ import java.util.Collection;
  * <p>
  * This currently a only convenience class with the proper name "TeeWriter".
  * </p>
- * 
+ *
  * @since 2.7
  */
 public class TeeWriter extends ProxyCollectionWriter {