Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
36
apk_decompiled/sources/F/m.java
Normal file
36
apk_decompiled/sources/F/m.java
Normal file
@@ -0,0 +1,36 @@
|
||||
package F;
|
||||
|
||||
import android.content.res.Resources;
|
||||
import java.util.Objects;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class m {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public final Resources f495a;
|
||||
|
||||
/* renamed from: b, reason: collision with root package name */
|
||||
public final Resources.Theme f496b;
|
||||
|
||||
public m(Resources resources, Resources.Theme theme) {
|
||||
this.f495a = resources;
|
||||
this.f496b = theme;
|
||||
}
|
||||
|
||||
public final boolean equals(Object obj) {
|
||||
if (this == obj) {
|
||||
return true;
|
||||
}
|
||||
if (obj != null && m.class == obj.getClass()) {
|
||||
m mVar = (m) obj;
|
||||
if (this.f495a.equals(mVar.f495a) && Objects.equals(this.f496b, mVar.f496b)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public final int hashCode() {
|
||||
return Objects.hash(this.f495a, this.f496b);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user