You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.2 KiB
44 lines
1.2 KiB
package androidx.versionedparcelable;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import p074z0.C1917b;
|
|
import p074z0.InterfaceC1918c;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ParcelImpl implements Parcelable {
|
|
public static final Parcelable.Creator<ParcelImpl> CREATOR = new C0462a();
|
|
|
|
/* renamed from: d */
|
|
public final InterfaceC1918c f1679d;
|
|
|
|
/* renamed from: androidx.versionedparcelable.ParcelImpl$a */
|
|
/* loaded from: classes.dex */
|
|
public static class C0462a implements Parcelable.Creator<ParcelImpl> {
|
|
@Override // android.os.Parcelable.Creator
|
|
/* renamed from: a */
|
|
public ParcelImpl createFromParcel(Parcel parcel) {
|
|
return new ParcelImpl(parcel);
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
/* renamed from: b */
|
|
public ParcelImpl[] newArray(int i) {
|
|
return new ParcelImpl[i];
|
|
}
|
|
}
|
|
|
|
public ParcelImpl(Parcel parcel) {
|
|
this.f1679d = new C1917b(parcel).m19u();
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public int describeContents() {
|
|
return 0;
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
new C1917b(parcel).m33L(this.f1679d);
|
|
}
|
|
} |