Skip to content

Instantly share code, notes, and snippets.

@RBusarow
Created December 28, 2019 21:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RBusarow/69b24e6a4e660a48366eb52a55d52c48 to your computer and use it in GitHub Desktop.
Save RBusarow/69b24e6a4e660a48366eb52a55d52c48 to your computer and use it in GitHub Desktop.
setValue() from the MutableLiveData source
package androidx.lifecycle;
public class MutableLiveData<T> extends LiveData<T> {
...
@Override
public void setValue(T value) {
super.setValue(value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment