27 lines
974 B
Java
27 lines
974 B
Java
package com.google.firebase.remoteconfig.internal;
|
|
|
|
import com.google.android.gms.tasks.SuccessContinuation;
|
|
import com.google.android.gms.tasks.Task;
|
|
import com.google.android.gms.tasks.Tasks;
|
|
import com.google.firebase.remoteconfig.internal.ConfigFetchHandler;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final /* synthetic */ class ConfigFetchHandler$$Lambda$4 implements SuccessContinuation {
|
|
private final ConfigFetchHandler.FetchResponse arg$1;
|
|
|
|
@Override // com.google.android.gms.tasks.SuccessContinuation
|
|
public final Task then(Object obj) {
|
|
Task forResult;
|
|
forResult = Tasks.forResult(this.arg$1);
|
|
return forResult;
|
|
}
|
|
|
|
public static SuccessContinuation lambdaFactory$(ConfigFetchHandler.FetchResponse fetchResponse) {
|
|
return new ConfigFetchHandler$$Lambda$4(fetchResponse);
|
|
}
|
|
|
|
private ConfigFetchHandler$$Lambda$4(ConfigFetchHandler.FetchResponse fetchResponse) {
|
|
this.arg$1 = fetchResponse;
|
|
}
|
|
}
|