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

alakazam.kotlin.core.CloseableExtensions.kt Maven / Gradle / Ivy

There is a newer version: 4.7.0
Show newest version
package alakazam.kotlin.core

import java.io.Closeable

/**
 * Attempts to call [Closeable.close], ignoring any exceptions which might be thrown. Will still
 * allow through other [Throwable]s (e.g. [NoClassDefFoundError])
 */
public fun Closeable.quietlyClose() {
  try {
    close()
  } catch (e: Exception) {
    // No-op
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy