39 lines
918 B
Java
39 lines
918 B
Java
package o;
|
|
|
|
import android.text.TextUtils;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class ucE {
|
|
public final String b;
|
|
public final String e;
|
|
|
|
public ucE(String str, String str2) {
|
|
this.e = str;
|
|
this.b = str2;
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || getClass() != obj.getClass()) {
|
|
return false;
|
|
}
|
|
ucE uce = (ucE) obj;
|
|
return TextUtils.equals(this.e, uce.e) && TextUtils.equals(this.b, uce.b);
|
|
}
|
|
|
|
public final int hashCode() {
|
|
return (this.e.hashCode() * 31) + this.b.hashCode();
|
|
}
|
|
|
|
public final String toString() {
|
|
StringBuilder sb = new StringBuilder("Header[name=");
|
|
sb.append(this.e);
|
|
sb.append(",value=");
|
|
sb.append(this.b);
|
|
sb.append("]");
|
|
return sb.toString();
|
|
}
|
|
}
|