- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
44 lines
936 B
Java
44 lines
936 B
Java
package com.ironsource;
|
|
|
|
import com.ironsource.mediationsdk.logger.IronSourceError;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class l8 {
|
|
private boolean a = true;
|
|
private IronSourceError b = null;
|
|
|
|
public IronSourceError a() {
|
|
return this.b;
|
|
}
|
|
|
|
public void a(IronSourceError ironSourceError) {
|
|
this.a = false;
|
|
this.b = ironSourceError;
|
|
}
|
|
|
|
public boolean b() {
|
|
return this.a;
|
|
}
|
|
|
|
public void c() {
|
|
this.a = true;
|
|
this.b = null;
|
|
}
|
|
|
|
public String toString() {
|
|
StringBuilder sb;
|
|
if (b()) {
|
|
sb = new StringBuilder();
|
|
sb.append("valid:");
|
|
sb.append(this.a);
|
|
} else {
|
|
sb = new StringBuilder();
|
|
sb.append("valid:");
|
|
sb.append(this.a);
|
|
sb.append(", IronSourceError:");
|
|
sb.append(this.b);
|
|
}
|
|
return sb.toString();
|
|
}
|
|
}
|