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

com.github.bingoohuang.utils.lang.Executes Maven / Gradle / Ivy

The newest version!
package com.github.bingoohuang.utils.lang;

import lombok.SneakyThrows;

import java.util.concurrent.Callable;

public class Executes {

    @SneakyThrows
    public static  T execute(Callable callable) {
        return callable.call();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy