mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
26 lines
1.5 KiB
Java
26 lines
1.5 KiB
Java
|
package androidx.compose.animation;
|
||
|
|
||
|
import kotlin.Metadata;
|
||
|
import kotlin.jvm.internal.Intrinsics;
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
/* compiled from: EnterExitTransition.kt */
|
||
|
@Metadata(d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0004\b\u0003\u0018\u00002\u00020\u0001B\r\u0012\u0006\u0010\u0002\u001a\u00020\u0003¢\u0006\u0002\u0010\u0004R\u0014\u0010\u0002\u001a\u00020\u0003X\u0090\u0004¢\u0006\b\n\u0000\u001a\u0004\b\u0005\u0010\u0006¨\u0006\u0007"}, d2 = {"Landroidx/compose/animation/EnterTransitionImpl;", "Landroidx/compose/animation/EnterTransition;", "data", "Landroidx/compose/animation/TransitionData;", "(Landroidx/compose/animation/TransitionData;)V", "getData$animation_release", "()Landroidx/compose/animation/TransitionData;", "animation_release"}, k = 1, mv = {1, 8, 0}, xi = 48)
|
||
|
/* loaded from: classes.dex */
|
||
|
public final class EnterTransitionImpl extends EnterTransition {
|
||
|
private final TransitionData data;
|
||
|
|
||
|
@Override // androidx.compose.animation.EnterTransition
|
||
|
/* renamed from: getData$animation_release, reason: from getter */
|
||
|
public TransitionData getData() {
|
||
|
return this.data;
|
||
|
}
|
||
|
|
||
|
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
||
|
public EnterTransitionImpl(TransitionData data) {
|
||
|
super(null);
|
||
|
Intrinsics.checkNotNullParameter(data, "data");
|
||
|
this.data = data;
|
||
|
}
|
||
|
}
|