ADD week 5
This commit is contained in:
		| @@ -0,0 +1,18 @@ | ||||
| package androidx.concurrent.futures; | ||||
|  | ||||
| import java.util.concurrent.Executor; | ||||
|  | ||||
| /* loaded from: classes.dex */ | ||||
| public enum DirectExecutor implements Executor { | ||||
|     INSTANCE; | ||||
|  | ||||
|     @Override // java.lang.Enum | ||||
|     public String toString() { | ||||
|         return "DirectExecutor"; | ||||
|     } | ||||
|  | ||||
|     @Override // java.util.concurrent.Executor | ||||
|     public void execute(Runnable runnable) { | ||||
|         runnable.run(); | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user