- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
30 lines
722 B
Java
30 lines
722 B
Java
package com.applovin.impl;
|
|
|
|
import com.ironsource.mediationsdk.logger.IronSourceError;
|
|
|
|
/* loaded from: classes.dex */
|
|
public final class v1 {
|
|
public final int a;
|
|
public final float b;
|
|
|
|
public v1(int i, float f) {
|
|
this.a = i;
|
|
this.b = f;
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
if (this == obj) {
|
|
return true;
|
|
}
|
|
if (obj == null || v1.class != obj.getClass()) {
|
|
return false;
|
|
}
|
|
v1 v1Var = (v1) obj;
|
|
return this.a == v1Var.a && Float.compare(v1Var.b, this.b) == 0;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return ((this.a + IronSourceError.ERROR_NON_EXISTENT_INSTANCE) * 31) + Float.floatToIntBits(this.b);
|
|
}
|
|
}
|