REFACTOR: Removed else statements.

This commit is contained in:
2017-12-21 02:57:32 +00:00
parent ee9406fed0
commit 4dc1bf4fdc

View File

@@ -71,7 +71,7 @@ namespace DiscImageChef.CommonTypes
public override bool Equals(object obj)
{
if(obj == null || !(obj is Partition)) return false;
else return Equals((Partition)obj);
return Equals((Partition)obj);
}
public override int GetHashCode()