Skip to content

Commit 74b54ab

Browse files
author
Niall Pemberton
committed
Fix checkstyle errors
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/io/trunk@1003216 13f79535-47bb-0310-9956-ffa450edef68
1 parent 09899f0 commit 74b54ab

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

src/java/org/apache/commons/io/TaggedIOException.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,10 @@ public class TaggedIOException extends IOExceptionWithCause {
5656
* }
5757
* </pre>
5858
*
59+
* @param throwable The Throwable object to check
5960
* @param tag tag object
61+
* @return <code>true</code> if the throwable has the specified tag,
62+
* otherwise <code>false</code>
6063
*/
6164
public static boolean isTaggedWith(Throwable throwable, Object tag) {
6265
return tag != null

src/java/org/apache/commons/io/comparator/ExtensionFileComparator.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,8 @@ public class ExtensionFileComparator extends AbstractFileComparator implements S
6060
public static final Comparator<File> EXTENSION_REVERSE = new ReverseComparator(EXTENSION_COMPARATOR);
6161

6262
/** Case-insensitive extension comparator instance (see {@link IOCase#INSENSITIVE}) */
63-
public static final Comparator<File> EXTENSION_INSENSITIVE_COMPARATOR = new ExtensionFileComparator(IOCase.INSENSITIVE);
63+
public static final Comparator<File> EXTENSION_INSENSITIVE_COMPARATOR
64+
= new ExtensionFileComparator(IOCase.INSENSITIVE);
6465

6566
/** Reverse case-insensitive extension comparator instance (see {@link IOCase#INSENSITIVE}) */
6667
public static final Comparator<File> EXTENSION_INSENSITIVE_REVERSE

0 commit comments

Comments
 (0)