All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.itangcent.common.utils.IOUtils.kt Maven / Gradle / Ivy

package com.itangcent.common.utils

import java.io.Closeable

object IOUtils {

    fun closeQuietly(vararg closeables: Closeable?) {
        for (closeable in closeables) {
            try {
                closeable?.close()
            } catch (_: Exception) {
            }
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy