Size component cleanup

This commit is contained in:
Marcin Ziąbek
2021-09-12 20:25:50 +02:00
parent 3dfe7a59e0
commit 2772b5b4a4
-8
View File
@@ -30,13 +30,5 @@
if (obj.GetType() != this.GetType()) return false;
return Equals((Size) obj);
}
public override int GetHashCode()
{
unchecked
{
return (Width.GetHashCode() * 397) ^ Height.GetHashCode();
}
}
}
}