discord-jadx/app/src/main/java/com/discord/utilities/view/extensions/ViewExtensions$fadeOut$viewPropertyAnimator$1.java
Juby210 02b39b5eaf
Enable replacing const values in jadx
Tracking changes should be much easier now.
2021-08-10 00:50:52 +02:00

21 lines
665 B
Java

package com.discord.utilities.view.extensions;
import android.view.View;
import kotlin.jvm.functions.Function0;
/* compiled from: ViewExtensions.kt */
public final class ViewExtensions$fadeOut$viewPropertyAnimator$1 implements Runnable {
public final /* synthetic */ Function0 $onAnimationEnd;
public final /* synthetic */ View $view;
public ViewExtensions$fadeOut$viewPropertyAnimator$1(View view, Function0 function0) {
this.$view = view;
this.$onAnimationEnd = function0;
}
@Override // java.lang.Runnable
public final void run() {
this.$view.setVisibility(8);
this.$onAnimationEnd.mo1invoke();
}
}