mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Add CloseableUtil.maybeClose(Closeable)
This commit is contained in:
parent
02e2eba556
commit
04238bd36a
1 changed files with 8 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
/**
|
||||
*
|
||||
* Copyright 2018 Florian Schmaus
|
||||
* Copyright 2018-2019 Florian Schmaus
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
|
@ -23,6 +23,10 @@ import java.util.logging.Logger;
|
|||
|
||||
public class CloseableUtil {
|
||||
|
||||
public static void maybeClose(Closeable closable) {
|
||||
maybeClose(closable, null);
|
||||
}
|
||||
|
||||
public static void maybeClose(Closeable closable, Logger logger) {
|
||||
if (closable == null) {
|
||||
return;
|
||||
|
@ -31,7 +35,9 @@ public class CloseableUtil {
|
|||
try {
|
||||
closable.close();
|
||||
} catch (IOException e) {
|
||||
if (logger != null) {
|
||||
logger.log(Level.WARNING, "Could not close " + closable, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue