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

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