mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 10:02:28 -06:00
22 lines
592 B
Java
22 lines
592 B
Java
package androidx.transition;
|
|
|
|
import android.view.View;
|
|
import android.view.WindowId;
|
|
|
|
/* loaded from: classes2.dex */
|
|
class WindowIdApi18 implements WindowIdImpl {
|
|
private final WindowId mWindowId;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public WindowIdApi18(View view) {
|
|
this.mWindowId = view.getWindowId();
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
return (obj instanceof WindowIdApi18) && ((WindowIdApi18) obj).mWindowId.equals(this.mWindowId);
|
|
}
|
|
|
|
public int hashCode() {
|
|
return this.mWindowId.hashCode();
|
|
}
|
|
}
|