22 lines
516 B
Java
22 lines
516 B
Java
package androidx.transition;
|
|
|
|
import android.view.View;
|
|
import android.view.WindowId;
|
|
|
|
/* loaded from: classes.dex */
|
|
class WindowIdApi18 implements WindowIdImpl {
|
|
private final WindowId mWindowId;
|
|
|
|
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();
|
|
}
|
|
}
|