Skip to content

Commit b828e78

Browse files
committed
Remove unnecessary semicolon.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/io/trunk@387337 13f79535-47bb-0310-9956-ffa450edef68
1 parent d4a098c commit b828e78

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ public static boolean waitFor(File file, int seconds) {
844844
try {
845845
Thread.sleep(100);
846846
} catch (InterruptedException ignore) {
847-
;
847+
// ignore exception
848848
} catch (Exception ex) {
849849
break;
850850
}

0 commit comments

Comments
 (0)