discord-jadx/app/src/main/java/com/discord/widgets/hubs/WidgetHubEmailFlow$$special$$inlined$args$1.java
2021-08-25 09:02:36 +02:00

46 lines
1.7 KiB
Java

package com.discord.widgets.hubs;
import android.os.Bundle;
import c.d.b.a.a;
import com.discord.app.AppFragment;
import d0.z.d.a0;
import d0.z.d.o;
import kotlin.jvm.functions.Function0;
/* compiled from: ArgUtils.kt */
public final class WidgetHubEmailFlow$$special$$inlined$args$1 extends o implements Function0<HubEmailArgs> {
public final /* synthetic */ String $argsKey;
public final /* synthetic */ AppFragment $this_args;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public WidgetHubEmailFlow$$special$$inlined$args$1(AppFragment appFragment, String str) {
super(0);
this.$this_args = appFragment;
this.$argsKey = str;
}
/* JADX WARN: Multi-variable type inference failed */
/* JADX WARNING: Unknown variable types count: 1 */
@Override // kotlin.jvm.functions.Function0
/* renamed from: invoke */
public final HubEmailArgs mo1invoke() {
Bundle arguments = this.$this_args.getArguments();
Object obj = null;
Object obj2 = arguments != null ? arguments.get(this.$argsKey) : null;
if (obj2 instanceof HubEmailArgs) {
obj = obj2;
}
HubEmailArgs hubEmailArgs = (HubEmailArgs) obj;
HubEmailArgs hubEmailArgs2 = hubEmailArgs;
if (hubEmailArgs == null) {
hubEmailArgs2 = this.$this_args.getMostRecentIntent().getParcelableExtra(this.$argsKey);
}
if (hubEmailArgs2 != null) {
return hubEmailArgs2;
}
StringBuilder N = a.N("Missing args for class type ");
N.append(a0.getOrCreateKotlinClass(HubEmailArgs.class).getSimpleName());
N.append(" + key ");
throw new IllegalStateException(a.E(N, this.$argsKey, '!'));
}
}