Skip to content

Commit 4bbdbfe

Browse files
author
Gary Gregory
committed
Remove trailing white spaces on all lines
1 parent 88f75b8 commit 4bbdbfe

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public IOExceptionList(List<? extends Throwable> causeList) {
4848

4949
/**
5050
* Gets the cause list.
51-
*
51+
*
5252
* @param <T> type of exception to return.
5353
* @return The list of causes.
5454
*/
@@ -58,7 +58,7 @@ public <T extends Throwable> List<T> getCauseList() {
5858

5959
/**
6060
* Gets the cause list.
61-
*
61+
*
6262
* @param <T> type of exception to return.
6363
* @param index index in the cause list.
6464
* @return The list of causes.
@@ -69,7 +69,7 @@ public <T extends Throwable> T getCause(final int index) {
6969

7070
/**
7171
* Gets the cause list.
72-
*
72+
*
7373
* @param <T> type of exception to return.
7474
* @param index index in the cause list.
7575
* @param clazz type of exception to return.
@@ -81,7 +81,7 @@ public <T extends Throwable> T getCause(final int index, Class<T> clazz) {
8181

8282
/**
8383
* Works around Throwable and Generics, may fail at runtime depending on the argument value.
84-
*
84+
*
8585
* @param <T> type of exception to return.
8686
* @param clazz the target type
8787
* @return The list of causes.

src/main/java/org/apache/commons/io/input/TaggedReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
* A reader decorator that tags potential exceptions so that the reader that caused the exception can easily be
2828
* identified. This is done by using the {@link TaggedIOException} class to wrap all thrown {@link IOException}s. See
2929
* below for an example of using this class.
30-
*
30+
*
3131
* <pre>
3232
* TaggedReader reader = new TaggedReader(...);
3333
* try {
@@ -47,7 +47,7 @@
4747
* Alternatively, the {@link #throwIfCauseOf(Throwable)} method can be used to let higher levels of code handle the
4848
* exception caused by this reader while other processing errors are being taken care of at this lower level.
4949
* </p>
50-
*
50+
*
5151
* <pre>
5252
* TaggedReader reader = new TaggedReader(...);
5353
* try {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
* The class {@link Writer} defines method signatures with {@code throws} {@link IOException}, which in this class are
4141
* actually {@link IOExceptionList} containing a list of {@link IOIndexedException}.
4242
* </p>
43-
*
43+
*
4444
* @since 2.7
4545
*/
4646
public class FilterCollectionWriter extends Writer {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* <p>
2727
* This currently a only convenience class with the proper name "TeeWriter".
2828
* </p>
29-
*
29+
*
3030
* @since 2.7
3131
*/
3232
public class TeeWriter extends ProxyCollectionWriter {

0 commit comments

Comments
 (0)