Java tutorial
//package com.java2s; //License from project: Open Source License import java.io.Closeable; public class Main { public static void closeQuietly(Closeable closeable) { if (closeable != null) { try { closeable.close(); } catch (Exception e) { // no op } } } }