public static void closeSilently(Closeable c) {
        if (c == null)
            return;
        try {
            c.close();