never mind in Java interface it’s annotated with @...
# android
w
never mind in Java interface it’s annotated with @nullable
Copy code
public interface Observer<T> {
    /**
     * Called when the data is changed.
     * @param t  The new data
     */
    void onChanged(@Nullable T t);
}