From 0f77e0465132b5b686cc913e8acd5443af7c6926 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 21 Dec 2017 02:42:18 +0000 Subject: [PATCH] REFACTOR: Replace built-in type with a keyword. --- Partition.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Partition.cs b/Partition.cs index 23dd19b..3f6d8ca 100644 --- a/Partition.cs +++ b/Partition.cs @@ -68,7 +68,7 @@ namespace DiscImageChef.CommonTypes return Start == other.Start && Length == other.Length; } - public override bool Equals(Object obj) + public override bool Equals(object obj) { if(obj == null || !(obj is Partition)) return false; else return Equals((Partition)obj);