Skip to content

Instantly share code, notes, and snippets.

View dmahapatro's full-sized avatar

Dhiraj Mahapatro dmahapatro

View GitHub Profile
@dmahapatro
dmahapatro / CloseableTest.groovy
Created April 15, 2014 01:10
Trait to handle try-with-resources feature for Java 8
import java.io.Closeable
import java.io.IOException
trait Closing {
def closeQuietly(){
try{
println "Closing"
this.close()
} catch (IOException e) {