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

org.multiverse.utils.IOUtils Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package org.multiverse.utils;

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

/**
 * @author Peter Veentjer
 */
public class IOUtils {

    public static void closeQuietly(Closeable closeable) {
        if (closeable == null) {
            return;
        }

        try {
            closeable.close();
        } catch (IOException drop) {
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy