com.github.stonelion.promise.Precondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of promise Show documentation
Show all versions of promise Show documentation
A promise library for jdk 7
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