18 lines
651 B
Java
18 lines
651 B
Java
package com.google.android.gms.common.api.internal;
|
|
|
|
import com.google.android.gms.common.api.ApiException;
|
|
import com.google.android.gms.common.api.Status;
|
|
import com.google.android.gms.tasks.Continuation;
|
|
import com.google.android.gms.tasks.Task;
|
|
|
|
/* loaded from: classes.dex */
|
|
final class zacx implements Continuation<Boolean, Void> {
|
|
@Override // com.google.android.gms.tasks.Continuation
|
|
public final /* synthetic */ Void then(Task<Boolean> task) throws Exception {
|
|
if (task.getResult().booleanValue()) {
|
|
return null;
|
|
}
|
|
throw new ApiException(new Status(13, "listener already unregistered"));
|
|
}
|
|
}
|