REFACTOR: Reformat code.

This commit is contained in:
2017-12-19 20:33:03 +00:00
parent 77edc7c91c
commit e6f6ace80b
704 changed files with 82627 additions and 83641 deletions

View File

@@ -54,8 +54,7 @@ namespace DiscImageChef.Filters
public override void Close()
{
if(dataStream != null)
dataStream.Close();
if(dataStream != null) dataStream.Close();
dataStream = null;
basePath = null;
opened = false;
@@ -225,12 +224,12 @@ namespace DiscImageChef.Filters
public override string GetFilename()
{
if(basePath == null)
return null;
if(basePath == null) return null;
if(basePath.EndsWith(".gz", StringComparison.InvariantCultureIgnoreCase))
return basePath.Substring(0, basePath.Length - 3);
if(basePath.EndsWith(".gzip", StringComparison.InvariantCultureIgnoreCase))
return basePath.Substring(0, basePath.Length - 5);
return basePath;
}