34 lines
756 B
Java
34 lines
756 B
Java
package o;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public final class LpH {
|
|
public final String b;
|
|
|
|
public LpH(String str) {
|
|
this.b = str;
|
|
}
|
|
|
|
public final String toString() {
|
|
String str = this.b;
|
|
StringBuilder sb = new StringBuilder("AdditionalMetaData(deeplinkURL=");
|
|
sb.append(str);
|
|
sb.append(")");
|
|
return sb.toString();
|
|
}
|
|
|
|
public final int hashCode() {
|
|
String str = this.b;
|
|
if (str == null) {
|
|
return 0;
|
|
}
|
|
return str.hashCode();
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
return (obj instanceof LpH) && C14957gcv.b((Object) this.b, (Object) ((LpH) obj).b);
|
|
}
|
|
}
|