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

zmq.util.Objects Maven / Gradle / Ivy

There is a newer version: 0.6.0
Show newest version
package zmq.util;

public class Objects
{
    private Objects()
    {
        // no instantiation
    }

    public static  T requireNonNull(T object, String msg)
    {
        Utils.checkArgument(object != null, msg);
        return object;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy