Skip to content

Instantly share code, notes, and snippets.

@relax-more
Created November 5, 2015 08:21
Show Gist options
  • Save relax-more/c2f558faf23c508f9d01 to your computer and use it in GitHub Desktop.
Save relax-more/c2f558faf23c508f9d01 to your computer and use it in GitHub Desktop.
use com.google.common.base.MoreObjects.MoreObjects.firstNonNull.
public class AuthorService {
public Author getOrDefault(String authorId, Author defaultAuthor) {
Author author = get(authorId); // get() is nullable method
return MoreObjects.firstNonNull(author, defaultAuthor);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment