- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
70 lines
2.1 KiB
Java
70 lines
2.1 KiB
Java
package com.applovin.impl;
|
|
|
|
import android.os.Parcel;
|
|
import android.os.Parcelable;
|
|
import com.ironsource.mediationsdk.logger.IronSourceError;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class up extends ya {
|
|
public static final Parcelable.Creator<up> CREATOR = new a();
|
|
public final String b;
|
|
public final String c;
|
|
|
|
@Override // com.applovin.impl.ya
|
|
public String toString() {
|
|
return this.a + ": url=" + this.c;
|
|
}
|
|
|
|
public up(Parcel parcel) {
|
|
super((String) xp.a((Object) parcel.readString()));
|
|
this.b = parcel.readString();
|
|
this.c = (String) xp.a((Object) parcel.readString());
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || up.class != obj.getClass()) {
|
|
return false;
|
|
}
|
|
up upVar = (up) obj;
|
|
return this.a.equals(upVar.a) && xp.a((Object) this.b, (Object) upVar.b) && xp.a((Object) this.c, (Object) upVar.c);
|
|
}
|
|
|
|
public int hashCode() {
|
|
int hashCode = (this.a.hashCode() + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31;
|
|
String str = this.b;
|
|
int hashCode2 = (hashCode + (str != null ? str.hashCode() : 0)) * 31;
|
|
String str2 = this.c;
|
|
return hashCode2 + (str2 != null ? str2.hashCode() : 0);
|
|
}
|
|
|
|
public up(String str, String str2, String str3) {
|
|
super(str);
|
|
this.b = str2;
|
|
this.c = str3;
|
|
}
|
|
|
|
@Override // android.os.Parcelable
|
|
public void writeToParcel(Parcel parcel, int i) {
|
|
parcel.writeString(this.a);
|
|
parcel.writeString(this.b);
|
|
parcel.writeString(this.c);
|
|
}
|
|
|
|
public class a implements Parcelable.Creator {
|
|
@Override // android.os.Parcelable.Creator
|
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
|
public up[] newArray(int i) {
|
|
return new up[i];
|
|
}
|
|
|
|
@Override // android.os.Parcelable.Creator
|
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
|
public up createFromParcel(Parcel parcel) {
|
|
return new up(parcel);
|
|
}
|
|
}
|
|
}
|