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

blended.launcher.internal.ARM.scala Maven / Gradle / Ivy

There is a newer version: 2.5.0-M10
Show newest version
package blended.launcher.internal

/**
 * Created by lefou on 11.04.16.
 */
object ARM {

  def using[C <: AutoCloseable, R](c: C)(f: C => R): R = {
    try {
      f(c)
    } finally {
      try {
        c.close()
      } catch {
        case t: Throwable => t.addSuppressed(t)
      }
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy