diff --git a/SabreTools.Library/Tools/Utilities.cs b/SabreTools.Library/Tools/Utilities.cs
index 9182c318..9c344a72 100644
--- a/SabreTools.Library/Tools/Utilities.cs
+++ b/SabreTools.Library/Tools/Utilities.cs
@@ -446,7 +446,7 @@ namespace SabreTools.Library.Tools
BaseArchive archive = null;
// First get the archive type
- ArchiveType? at = GetCurrentArchiveType(input);
+ ArchiveType? at = GetArchiveType(input);
// If we got back null, then it's not an archive, so we we return
if (at == null)
@@ -907,7 +907,7 @@ namespace SabreTools.Library.Tools
///
/// Input file to check
/// ArchiveType of inputted file (null on error)
- public static ArchiveType? GetCurrentArchiveType(string input)
+ public static ArchiveType? GetArchiveType(string input)
{
ArchiveType? outtype = null;
@@ -1192,7 +1192,7 @@ namespace SabreTools.Library.Tools
shouldExternalProcess = true;
shouldInternalProcess = true;
- ArchiveType? archiveType = GetCurrentArchiveType(input);
+ ArchiveType? archiveType = GetArchiveType(input);
switch (archiveType)
{
case null: