mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00: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);
|
|
}
|
|
}
|