mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 00:22:50 -06:00
21 lines
467 B
Java
21 lines
467 B
Java
|
package androidx.transition;
|
||
|
|
||
|
import android.os.IBinder;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
class WindowIdApi14 implements WindowIdImpl {
|
||
|
private final IBinder mToken;
|
||
|
|
||
|
WindowIdApi14(IBinder iBinder) {
|
||
|
this.mToken = iBinder;
|
||
|
}
|
||
|
|
||
|
public boolean equals(Object obj) {
|
||
|
return (obj instanceof WindowIdApi14) && ((WindowIdApi14) obj).mToken.equals(this.mToken);
|
||
|
}
|
||
|
|
||
|
public int hashCode() {
|
||
|
return this.mToken.hashCode();
|
||
|
}
|
||
|
}
|