ch-commons-util/src/main/java/com/cloudhopper/commons/util/CompressionUtil.java [423:435]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                in.close();
                in = null;

                // close the output file
                destOut.close();
                destOut = null;
            } finally {
                // make sure everything is closed
                if (in != null) {
                    try { in.close(); } catch (Exception e) { }
                }
                if (destOut != null) {
                    try { destOut.close(); } catch (Exception e) { }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ch-commons-util/src/main/java/com/cloudhopper/commons/util/CompressionUtil.java [530:542]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                in.close();
                in = null;

                // close the output file
                destOut.close();
                destOut = null;
            } finally {
                // make sure everything is closed
                if (in != null) {
                    try { in.close(); } catch (Exception e) { }
                }
                if (destOut != null) {
                    try { destOut.close(); } catch (Exception e) { }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



