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

@@ -34,12 +34,11 @@ namespace SabreTools.FileTypes
}
/// <summary>
/// Create a new Archive from the given file
/// Create a new BaseArchive from the given file
/// </summary>
/// <param name="filename">Name of the file to use as an archive</param>
/// <param name="getHashes">True if hashes for this file should be calculated, false otherwise (default)</param>
public BaseArchive(string filename, bool getHashes = false)
: base(filename, getHashes)
/// <param name="filename">Name of the file to use</param>
public BaseArchive(string filename)
: base(filename)
{
}