Fix Checkstyle violation

See gh-24393
This commit is contained in:
Sam Brannen 2020-02-04 13:45:02 +01:00
parent 72685b1d81
commit 2b6117c0c2
1 changed files with 2 additions and 1 deletions

View File

@ -231,7 +231,8 @@ public abstract class FileCopyUtils {
private static void close(Closeable closeable) {
try {
closeable.close();
} catch (IOException ex) {
}
catch (IOException ex) {
// ignore
}
}