- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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();
|
|
}
|
|
}
|