Rabbit-R1/android (non root)/java/sources/org/webrtc/Size.java
2024-05-21 17:08:36 -04:00

30 lines
680 B
Java

package org.webrtc;
import io.sentry.protocol.ViewHierarchyNode;
/* loaded from: classes3.dex */
public class Size {
public int height;
public int width;
public int hashCode() {
return (this.width * 65537) + 1 + this.height;
}
public Size(int i, int i2) {
this.width = i;
this.height = i2;
}
public String toString() {
return this.width + ViewHierarchyNode.JsonKeys.X + this.height;
}
public boolean equals(Object obj) {
if (!(obj instanceof Size)) {
return false;
}
Size size = (Size) obj;
return this.width == size.width && this.height == size.height;
}
}