ADD week 5
This commit is contained in:
		
							
								
								
									
										21
									
								
								02-Easy5/E5/sources/androidx/lifecycle/MutableLiveData.java
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								02-Easy5/E5/sources/androidx/lifecycle/MutableLiveData.java
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,21 @@ | ||||
| package androidx.lifecycle; | ||||
|  | ||||
| /* loaded from: classes.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); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user