Preemptive FileTypes cleanup

This commit is contained in:
Matt Nadareski
2025-01-04 20:24:56 -05:00
parent f5e2d8a11c
commit c449f34410
11 changed files with 29 additions and 119 deletions

View File

@@ -31,10 +31,8 @@ namespace SabreTools.FileTypes.Archives
/// Create a new TorrentRARArchive from the given file
/// </summary>
/// <param name="filename">Name of the file to use as an archive</param>
/// <param name="read">True for opening file as read, false for opening file as write</param>
/// <param name="getHashes">True if hashes for this file should be calculated, false otherwise (default)</param>
public RarArchive(string filename, bool getHashes = false)
: base(filename, getHashes)
public RarArchive(string filename)
: base(filename)
{
}