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

32 lines
1.4 KiB
Java

package androidx.core.animation;
import android.animation.Animator;
import d0.z.d.m;
import kotlin.Unit;
import kotlin.jvm.functions.Function1;
/* compiled from: Animator.kt */
public final class AnimatorKt$addPauseListener$listener$1 implements Animator.AnimatorPauseListener {
public final /* synthetic */ Function1<Animator, Unit> $onPause;
public final /* synthetic */ Function1<Animator, Unit> $onResume;
/* 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) {
this.$onPause = function1;
this.$onResume = function12;
}
@Override // android.animation.Animator.AnimatorPauseListener
public void onAnimationPause(Animator animator) {
m.checkNotNullParameter(animator, "animator");
this.$onPause.invoke(animator);
}
@Override // android.animation.Animator.AnimatorPauseListener
public void onAnimationResume(Animator animator) {
m.checkNotNullParameter(animator, "animator");
this.$onResume.invoke(animator);
}
}