Skip to content

Instantly share code, notes, and snippets.

@abohomol
Created October 25, 2018 11:48
Show Gist options
  • Save abohomol/fb44aacbd8685c8f256d2b6ea6d57fd0 to your computer and use it in GitHub Desktop.
Save abohomol/fb44aacbd8685c8f256d2b6ea6d57fd0 to your computer and use it in GitHub Desktop.
public static <T> T checkNotNull(T reference) {
if (reference == null) {
throw new NullPointerException();
}
return reference;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment