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

io.hawt.util.Closeables Maven / Gradle / Ivy

The newest version!
package io.hawt.util;

import java.io.Closeable;

public final class Closeables {

    private Closeables() {
        //Utility Class
    }

    public static void closeQuietly(Closeable closeable) {
        if (closeable != null) {
            try {
                closeable.close();
            } catch (Exception ex) {
                //ignore
            }
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy