mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
21 lines
437 B
Java
21 lines
437 B
Java
package androidx.lifecycle;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class MutableLiveData<T> extends LiveData<T> {
|
|
public MutableLiveData(T t) {
|
|
super(t);
|
|
}
|
|
|
|
public MutableLiveData() {
|
|
}
|
|
|
|
@Override // androidx.lifecycle.LiveData
|
|
public void postValue(T t) {
|
|
super.postValue(t);
|
|
}
|
|
|
|
@Override // androidx.lifecycle.LiveData
|
|
public void setValue(T t) {
|
|
super.setValue(t);
|
|
}
|
|
}
|