- 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
39 lines
930 B
Java
39 lines
930 B
Java
package com.applovin.impl;
|
|
|
|
import com.applovin.exoplayer2.common.base.Preconditions;
|
|
import java.io.Serializable;
|
|
import java.util.Comparator;
|
|
|
|
/* loaded from: classes.dex */
|
|
final class x3 extends wg implements Serializable {
|
|
final Comparator a;
|
|
|
|
public x3(Comparator comparator) {
|
|
this.a = (Comparator) Preconditions.checkNotNull(comparator);
|
|
}
|
|
|
|
@Override // com.applovin.impl.wg, java.util.Comparator
|
|
public int compare(Object obj, Object obj2) {
|
|
return this.a.compare(obj, obj2);
|
|
}
|
|
|
|
@Override // java.util.Comparator
|
|
public boolean equals(Object obj) {
|
|
if (obj == this) {
|
|
return true;
|
|
}
|
|
if (obj instanceof x3) {
|
|
return this.a.equals(((x3) obj).a);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public int hashCode() {
|
|
return this.a.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return this.a.toString();
|
|
}
|
|
}
|