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

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