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

com.neko233.skilltree.global.lock.mysql.utils.JdbcHelper Maven / Gradle / Ivy

There is a newer version: 0.3.2
Show newest version
package com.neko233.skilltree.global.lock.mysql.utils;

import java.util.Arrays;

public class JdbcHelper {
    public static void gracefulClose(AutoCloseable... closeables) {
        Arrays.asList(closeables).forEach(closeable -> {
            if (closeable != null) {
                try {
                    closeable.close();
                } catch (Exception e) {
                }
            }
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy