discord-jadx/app/src/main/java/androidx/activity/OnBackPressedDispatcherKt$a...

21 lines
765 B
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package androidx.activity;
import kotlin.jvm.functions.Function1;
/* compiled from: OnBackPressedDispatcher.kt */
public final class OnBackPressedDispatcherKt$addCallback$callback$1 extends OnBackPressedCallback {
public final /* synthetic */ boolean $enabled;
public final /* synthetic */ Function1 $onBackPressed;
/* JADX INFO: super call moved to the top of the method (can break code semantics) */
public OnBackPressedDispatcherKt$addCallback$callback$1(Function1 function1, boolean z2, boolean z3) {
super(z3);
this.$onBackPressed = function1;
this.$enabled = z2;
}
@Override // androidx.activity.OnBackPressedCallback
public void handleOnBackPressed() {
this.$onBackPressed.invoke(this);
}
}