Signature-based instead of extension-based

This commit is contained in:
Matt Nadareski
2016-04-13 13:35:50 -07:00
parent 35a6fbe1d6
commit f5d7bbd847
2 changed files with 10 additions and 17 deletions

View File

@@ -28,9 +28,6 @@ namespace SabreTools.Helper
public static Dictionary<string, int> PCE = new Dictionary<string, int>();
public static Dictionary<string, int> SNES = new Dictionary<string, int>();
// Available archive formats
public static List<string> ArchiveFormats = new List<string>();
/// <summary>
/// Create all remappings to be used by the program
/// </summary>
@@ -229,12 +226,5 @@ namespace SabreTools.Helper
}
}
}
public static void CreateArchiveFormats()
{
ArchiveFormats.Add("7z");
ArchiveFormats.Add("zip");
ArchiveFormats.Add("rar");
}
}
}