瀏覽代碼

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;
             if (obj.GetType() != this.GetType()) return false;
             return Equals((Size) obj);
             return Equals((Size) obj);
         }
         }
-
-        public override int GetHashCode()
-        {
-            unchecked
-            {
-                return (Width.GetHashCode() * 397) ^ Height.GetHashCode();
-            }
-        }
     }
     }
 }
 }