32 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Java
		
	
	
	
	
	
| package kotlinx.coroutines;
 | |
| 
 | |
| import kotlin.Metadata;
 | |
| 
 | |
| /* compiled from: Job.kt */
 | |
| @Metadata(d1 = {"\u00000\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0002\b\u0003\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\u0003\n\u0000\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\bÇ\u0002\u0018\u00002\u00020\u00012\u00020\u0002B\u0007\b\u0002¢\u0006\u0002\u0010\u0003J\u0010\u0010\b\u001a\u00020\t2\u0006\u0010\n\u001a\u00020\u000bH\u0016J\b\u0010\f\u001a\u00020\rH\u0016J\b\u0010\u000e\u001a\u00020\u000fH\u0016R\u0016\u0010\u0004\u001a\u0004\u0018\u00010\u00058VX\u0096\u0004¢\u0006\u0006\u001a\u0004\b\u0006\u0010\u0007¨\u0006\u0010"}, d2 = {"Lkotlinx/coroutines/NonDisposableHandle;", "Lkotlinx/coroutines/DisposableHandle;", "Lkotlinx/coroutines/ChildHandle;", "()V", "parent", "Lkotlinx/coroutines/Job;", "getParent", "()Lkotlinx/coroutines/Job;", "childCancelled", "", "cause", "", "dispose", "", "toString", "", "kotlinx-coroutines-core"}, k = 1, mv = {1, 8, 0}, xi = 48)
 | |
| /* loaded from: classes.dex */
 | |
| public final class NonDisposableHandle implements DisposableHandle, ChildHandle {
 | |
|     public static final NonDisposableHandle INSTANCE = new NonDisposableHandle();
 | |
| 
 | |
|     @Override // kotlinx.coroutines.ChildHandle
 | |
|     public boolean childCancelled(Throwable cause) {
 | |
|         return false;
 | |
|     }
 | |
| 
 | |
|     @Override // kotlinx.coroutines.DisposableHandle
 | |
|     public void dispose() {
 | |
|     }
 | |
| 
 | |
|     @Override // kotlinx.coroutines.ChildHandle
 | |
|     public Job getParent() {
 | |
|         return null;
 | |
|     }
 | |
| 
 | |
|     public String toString() {
 | |
|         return "NonDisposableHandle";
 | |
|     }
 | |
| 
 | |
|     private NonDisposableHandle() {
 | |
|     }
 | |
| }
 |