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

@@ -64,10 +64,8 @@ namespace DiscImageChef.Core
}
}
#pragma warning disable RECS0022 // A catch clause that catches System.Exception and has an empty body
catch
#pragma warning restore RECS0022 // A catch clause that catches System.Exception and has an empty body
{
}
catch { }
#pragma warning restore RECS0022 // A catch clause that catches System.Exception and has an empty body
}
}
@@ -88,27 +86,18 @@ namespace DiscImageChef.Core
}
}
#pragma warning disable RECS0022 // A catch clause that catches System.Exception and has an empty body
catch
catch { }
#pragma warning restore RECS0022 // A catch clause that catches System.Exception and has an empty body
{
}
}
}
}
// Still not recognized
if(_imageFormat == null)
{
return null;
}
if(_imageFormat == null) { return null; }
return _imageFormat;
}
catch
{
return null;
}
catch { return null; }
}
}
}
}