Files
rr3-apk/decompiled/sources/com/applovin/impl/og.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

59 lines
1.6 KiB
Java

package com.applovin.impl;
import android.view.View;
import com.iab.omid.library.applovin.adsession.FriendlyObstructionPurpose;
/* loaded from: classes.dex */
public class og {
private final View a;
private final FriendlyObstructionPurpose b;
private final String c;
public String a() {
return this.c;
}
public FriendlyObstructionPurpose b() {
return this.b;
}
public View c() {
return this.a;
}
public og(View view, FriendlyObstructionPurpose friendlyObstructionPurpose, String str) {
this.a = view;
this.b = friendlyObstructionPurpose;
this.c = str;
}
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
og ogVar = (og) obj;
View view = this.a;
if (view == null ? ogVar.a != null : !view.equals(ogVar.a)) {
return false;
}
if (this.b != ogVar.b) {
return false;
}
String str = this.c;
String str2 = ogVar.c;
return str != null ? str.equals(str2) : str2 == null;
}
public int hashCode() {
View view = this.a;
int hashCode = (view != null ? view.hashCode() : 0) * 31;
FriendlyObstructionPurpose friendlyObstructionPurpose = this.b;
int hashCode2 = (hashCode + (friendlyObstructionPurpose != null ? friendlyObstructionPurpose.hashCode() : 0)) * 31;
String str = this.c;
return hashCode2 + (str != null ? str.hashCode() : 0);
}
}