List of usage examples for android.support.v4.util Preconditions checkNotNull
public static @NonNull <T> T checkNotNull(final T reference)
From source file:android.support.text.emoji.EmojiProcessor.java
/** * Set the GlyphChecker instance used by EmojiProcessor. Used for testing. *//*ww w. j ava 2 s . c om*/ void setGlyphChecker(@NonNull final GlyphChecker glyphChecker) { Preconditions.checkNotNull(glyphChecker); mGlyphChecker = glyphChecker; }