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);