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

net.erdfelt.android.apk.io.IO Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
package net.erdfelt.android.apk.io;

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

public final class IO {
    public static final void close(Closeable c) {
        if (c == null) {
            return;
        }
        try {
            c.close();
        } catch (IOException ignore) {
            /* ignore */
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy