23 lines
756 B
Java
23 lines
756 B
Java
package com.google.firebase.remoteconfig;
|
|
|
|
import java.util.concurrent.Callable;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
/* loaded from: classes2.dex */
|
|
public final /* synthetic */ class RemoteConfigComponent$$Lambda$1 implements Callable {
|
|
private final RemoteConfigComponent arg$1;
|
|
|
|
@Override // java.util.concurrent.Callable
|
|
public final Object call() {
|
|
return this.arg$1.getDefault();
|
|
}
|
|
|
|
public static Callable lambdaFactory$(RemoteConfigComponent remoteConfigComponent) {
|
|
return new RemoteConfigComponent$$Lambda$1(remoteConfigComponent);
|
|
}
|
|
|
|
private RemoteConfigComponent$$Lambda$1(RemoteConfigComponent remoteConfigComponent) {
|
|
this.arg$1 = remoteConfigComponent;
|
|
}
|
|
}
|