Skip to content

Instantly share code, notes, and snippets.

@rmcdouga
Created May 30, 2019 22:56
Show Gist options
  • Save rmcdouga/a0cfce334af8cab2ede05c8acc0beecf to your computer and use it in GitHub Desktop.
Save rmcdouga/a0cfce334af8cab2ede05c8acc0beecf to your computer and use it in GitHub Desktop.
Set if Not Null
private <T> void setIfNotNull(final Consumer<T> setter, final T value) {
if (value != null) {
setter.accept(value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment