1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

Call IOUtils.closeQuietly where appropriate

This commit is contained in:
Andrew Gaul 2011-11-02 22:22:10 -07:00
parent 976761e0e5
commit b1a807a712

View File

@ -90,6 +90,7 @@ import com.jcraft.jzlib.JZlib;
import com.jcraft.jzlib.ZOutputStream; import com.jcraft.jzlib.ZOutputStream;
import java.util.zip.Inflater; import java.util.zip.Inflater;
import java.util.zip.InflaterInputStream; import java.util.zip.InflaterInputStream;
import org.apache.commons.io.IOUtils;
/** /**
* <pre> * <pre>
@ -2166,21 +2167,9 @@ public class ImapStore extends Store {
// //
// } // }
// } // }
try { IOUtils.closeQuietly(mIn);
mIn.close(); IOUtils.closeQuietly(mOut);
} catch (Exception e) { IOUtils.closeQuietly(mSocket);
}
try {
mOut.close();
} catch (Exception e) {
}
try {
mSocket.close();
} catch (Exception e) {
}
mIn = null; mIn = null;
mOut = null; mOut = null;
mSocket = null; mSocket = null;