public static void close()

in src/main/java/org/apache/openejb/tools/release/util/IO.java [148:160]


    public static void close(final Closeable closeable) throws IOException {
        if (closeable == null) return;
        try {
            if (closeable instanceof Flushable) {
                ((Flushable) closeable).flush();
            }
        } catch (final IOException e) {
        }
        try {
            closeable.close();
        } catch (final IOException e) {
        }
    }