23 lines
499 B
Java
23 lines
499 B
Java
package o;
|
|
|
|
import android.view.View;
|
|
import android.view.WindowId;
|
|
|
|
/* loaded from: classes.dex */
|
|
class Ixu implements InterfaceC16559pNf {
|
|
private final WindowId d;
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public Ixu(View view) {
|
|
this.d = view.getWindowId();
|
|
}
|
|
|
|
public boolean equals(Object obj) {
|
|
return (obj instanceof Ixu) && ((Ixu) obj).d.equals(this.d);
|
|
}
|
|
|
|
public int hashCode() {
|
|
return this.d.hashCode();
|
|
}
|
|
}
|