ソースを参照

Size component cleanup

Marcin Ziąbek 4 年 前
コミット
2772b5b4a4
1 ファイル変更0 行追加8 行削除
  1. 0 8
      QuestPDF/Infrastructure/Size.cs

+ 0 - 8
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();
-            }
-        }
     }
 }