REFACTOR: Removed else statements.

This commit is contained in:
2017-12-21 02:57:32 +00:00
parent f0e80721ed
commit ff5540ff5d
13 changed files with 183 additions and 200 deletions

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