Files
rr3-apk/decompiled/sources/com/ironsource/dt.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

65 lines
1.4 KiB
Java

package com.ironsource;
import kotlin.jvm.internal.DefaultConstructorMarker;
import kotlin.jvm.internal.Intrinsics;
/* loaded from: classes2.dex */
public final class dt {
private String a;
/* JADX WARN: Multi-variable type inference failed */
public dt() {
this(null, 1, 0 == true ? 1 : 0);
}
public dt(String str) {
this.a = str;
}
public /* synthetic */ dt(String str, int i, DefaultConstructorMarker defaultConstructorMarker) {
this((i & 1) != 0 ? null : str);
}
public static /* synthetic */ dt a(dt dtVar, String str, int i, Object obj) {
if ((i & 1) != 0) {
str = dtVar.a;
}
return dtVar.a(str);
}
public final dt a(String str) {
return new dt(str);
}
public final String a() {
return this.a;
}
public final String b() {
return this.a;
}
public final void b(String str) {
this.a = str;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
return (obj instanceof dt) && Intrinsics.areEqual(this.a, ((dt) obj).a);
}
public int hashCode() {
String str = this.a;
if (str == null) {
return 0;
}
return str.hashCode();
}
public String toString() {
return "TestSuiteSettings(controllerUrl=" + this.a + ')';
}
}