- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
43 lines
2.2 KiB
Java
43 lines
2.2 KiB
Java
package gatewayprotocol.v1;
|
|
|
|
import gatewayprotocol.v1.BidRequestEventOuterClass;
|
|
import gatewayprotocol.v1.HeaderBiddingTokenOuterClass;
|
|
import gatewayprotocol.v1.TokenInfoKt;
|
|
import kotlin.jvm.functions.Function1;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
import kotlin.jvm.internal.SourceDebugExtension;
|
|
|
|
@SourceDebugExtension({"SMAP\nTokenInfoKt.kt\nKotlin\n*S Kotlin\n*F\n+ 1 TokenInfoKt.kt\ngatewayprotocol/v1/TokenInfoKtKt\n+ 2 fake.kt\nkotlin/jvm/internal/FakeKt\n*L\n1#1,106:1\n1#2:107\n*E\n"})
|
|
/* loaded from: classes5.dex */
|
|
public final class TokenInfoKtKt {
|
|
/* renamed from: -initializetokenInfo, reason: not valid java name */
|
|
public static final BidRequestEventOuterClass.TokenInfo m4050initializetokenInfo(Function1 block) {
|
|
Intrinsics.checkNotNullParameter(block, "block");
|
|
TokenInfoKt.Dsl.Companion companion = TokenInfoKt.Dsl.Companion;
|
|
BidRequestEventOuterClass.TokenInfo.Builder newBuilder = BidRequestEventOuterClass.TokenInfo.newBuilder();
|
|
Intrinsics.checkNotNullExpressionValue(newBuilder, "newBuilder()");
|
|
TokenInfoKt.Dsl _create = companion._create(newBuilder);
|
|
block.invoke(_create);
|
|
return _create._build();
|
|
}
|
|
|
|
public static final BidRequestEventOuterClass.TokenInfo copy(BidRequestEventOuterClass.TokenInfo tokenInfo, Function1 block) {
|
|
Intrinsics.checkNotNullParameter(tokenInfo, "<this>");
|
|
Intrinsics.checkNotNullParameter(block, "block");
|
|
TokenInfoKt.Dsl.Companion companion = TokenInfoKt.Dsl.Companion;
|
|
BidRequestEventOuterClass.TokenInfo.Builder builder = tokenInfo.toBuilder();
|
|
Intrinsics.checkNotNullExpressionValue(builder, "this.toBuilder()");
|
|
TokenInfoKt.Dsl _create = companion._create(builder);
|
|
block.invoke(_create);
|
|
return _create._build();
|
|
}
|
|
|
|
public static final HeaderBiddingTokenOuterClass.HeaderBiddingToken getHeaderBiddingTokenOrNull(BidRequestEventOuterClass.TokenInfoOrBuilder tokenInfoOrBuilder) {
|
|
Intrinsics.checkNotNullParameter(tokenInfoOrBuilder, "<this>");
|
|
if (tokenInfoOrBuilder.hasHeaderBiddingToken()) {
|
|
return tokenInfoOrBuilder.getHeaderBiddingToken();
|
|
}
|
|
return null;
|
|
}
|
|
}
|