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

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