Prevent incorrect error log about saving failed if an exception was thrown
This commit is contained in:
parent
9a775171b5
commit
c0f5ff8805
@ -585,7 +585,9 @@ public class SignalAccount implements Closeable {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void close() throws IOException {
|
public void close() throws IOException {
|
||||||
save();
|
if (fileChannel.isOpen()) {
|
||||||
|
save();
|
||||||
|
}
|
||||||
synchronized (fileChannel) {
|
synchronized (fileChannel) {
|
||||||
try {
|
try {
|
||||||
lock.close();
|
lock.close();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user