mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
30 lines
680 B
Java
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;
|
|
}
|
|
}
|