discord-jadx/app/src/main/java/androidx/core/animation/AnimatorKt$addPauseListener...

32 lines
1.4 KiB
Java
Raw Normal View History

2021-07-24 02:37:17 +00:00
package androidx.core.animation;
import android.animation.Animator;
import d0.z.d.m;
2021-09-21 07:33:49 +00:00
import kotlin.Unit;
2021-07-24 02:37:17 +00:00
import kotlin.jvm.functions.Function1;
/* compiled from: Animator.kt */
public final class AnimatorKt$addPauseListener$listener$1 implements Animator.AnimatorPauseListener {
2021-09-21 07:33:49 +00:00
public final /* synthetic */ Function1<Animator, Unit> $onPause;
public final /* synthetic */ Function1<Animator, Unit> $onResume;
2021-07-24 02:37:17 +00:00
2021-09-21 07:33:49 +00:00
/* JADX DEBUG: Multi-variable search result rejected for r1v0, resolved type: kotlin.jvm.functions.Function1<? super android.animation.Animator, kotlin.Unit> */
/* JADX DEBUG: Multi-variable search result rejected for r2v0, resolved type: kotlin.jvm.functions.Function1<? super android.animation.Animator, kotlin.Unit> */
/* JADX WARN: Multi-variable type inference failed */
public AnimatorKt$addPauseListener$listener$1(Function1<? super Animator, Unit> function1, Function1<? super Animator, Unit> function12) {
2021-07-24 02:37:17 +00:00
this.$onPause = function1;
this.$onResume = function12;
}
@Override // android.animation.Animator.AnimatorPauseListener
public void onAnimationPause(Animator animator) {
2021-09-21 07:33:49 +00:00
m.checkNotNullParameter(animator, "animator");
2021-07-24 02:37:17 +00:00
this.$onPause.invoke(animator);
}
@Override // android.animation.Animator.AnimatorPauseListener
public void onAnimationResume(Animator animator) {
2021-09-21 07:33:49 +00:00
m.checkNotNullParameter(animator, "animator");
2021-07-24 02:37:17 +00:00
this.$onResume.invoke(animator);
}
}