removed redundant else

This commit is contained in:
Keivan Beigi
2014-12-06 23:23:11 -08:00
parent 3b087ba922
commit cf77104a02
23 changed files with 145 additions and 232 deletions
+1 -1
View File
@@ -241,7 +241,7 @@ namespace NzbDrone.Common.Disk
{
return TransferMode.HardLink;
}
else if (!mode.HasFlag(TransferMode.Copy))
if (!mode.HasFlag(TransferMode.Copy))
{
throw new IOException("Hardlinking from '" + source + "' to '" + destination + "' failed.");
}