Some cleanup around FileTypes

This commit is contained in:
Matt Nadareski
2024-07-19 15:35:23 -04:00
parent 73582779d2
commit 092e9c6876
20 changed files with 42 additions and 530 deletions

View File

@@ -55,7 +55,6 @@ namespace SabreTools.FileTypes.Archives
public GZipArchive()
: base()
{
this.Type = FileType.GZipArchive;
}
/// <summary>
@@ -67,7 +66,6 @@ namespace SabreTools.FileTypes.Archives
public GZipArchive(string filename, bool getHashes = false)
: base(filename, getHashes)
{
this.Type = FileType.GZipArchive;
}
#endregion