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

com.github.stonelion.promise.Precondition Maven / Gradle / Ivy

The newest version!
package com.github.stonelion.promise;

public class Precondition {
    public static  T checkNotNull(T reference) {
        if (reference == null) {
            throw new NullPointerException();
        }
        return reference;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy