Files
rr3-apk/decompiled/sources/com/mbridge/msdk/tracker/network/h.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

43 lines
960 B
Java

package com.mbridge.msdk.tracker.network;
import android.text.TextUtils;
import com.ironsource.v8;
/* loaded from: classes4.dex */
public final class h {
private final String a;
private final String b;
public final String a() {
return this.a;
}
public final String b() {
return this.b;
}
public h(String str, String str2) {
this.a = str;
this.b = str2;
}
public final boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || h.class != obj.getClass()) {
return false;
}
h hVar = (h) obj;
return TextUtils.equals(this.a, hVar.a) && TextUtils.equals(this.b, hVar.b);
}
public final int hashCode() {
return (this.a.hashCode() * 31) + this.b.hashCode();
}
public final String toString() {
return "Header[name=" + this.a + ",value=" + this.b + v8.i.e;
}
}