mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 14:46:31 +02:00
Updated AndroidX libraries
This commit is contained in:
@@ -23,6 +23,23 @@ package androidx.lifecycle;
|
||||
*/
|
||||
@SuppressWarnings("WeakerAccess")
|
||||
public class MutableLiveData<T> extends LiveData<T> {
|
||||
|
||||
/**
|
||||
* Creates a MutableLiveData initialized with the given {@code value}.
|
||||
*
|
||||
* @param value initial value
|
||||
*/
|
||||
public MutableLiveData(T value) {
|
||||
super(value);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a MutableLiveData with no value assigned to it.
|
||||
*/
|
||||
public MutableLiveData() {
|
||||
super();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void postValue(T value) {
|
||||
super.postValue(value);
|
||||
|
||||
Reference in New Issue
Block a user