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

org.securegraph.util.CloseableUtils Maven / Gradle / Ivy

The newest version!
package org.securegraph.util;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.Closeable;
import java.io.IOException;

public class CloseableUtils {
    private static final Logger LOGGER = LoggerFactory.getLogger(CloseableUtils.class);

    public static void closeQuietly(Closeable closeable) {
        if (closeable == null) {
            return;
        }
        try {
            closeable.close();
        } catch (IOException ex) {
            LOGGER.warn("Failed to close", ex);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy