From 2772b5b4a4ffa65584e9a158963c6077cb583bd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Zi=C4=85bek?= Date: Sun, 12 Sep 2021 20:25:50 +0200 Subject: [PATCH] Size component cleanup --- QuestPDF/Infrastructure/Size.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/QuestPDF/Infrastructure/Size.cs b/QuestPDF/Infrastructure/Size.cs index 196d58e..e052239 100644 --- a/QuestPDF/Infrastructure/Size.cs +++ b/QuestPDF/Infrastructure/Size.cs @@ -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(); - } - } } } \ No newline at end of file