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

@@ -1153,7 +1153,8 @@ namespace DiscImageChef.DiscImages
throw new FeatureNotPresentImageException("Lead-out not present in disk image");
}
else throw new FeatureUnsupportedImageException("Feature not supported by image format");
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
#endregion
@@ -1442,7 +1443,8 @@ namespace DiscImageChef.DiscImages
getbuf <<= 1;
getlen--;
if(i < 0) return 1;
else return 0;
return 0;
}
int GetByte() /* get a byte */