diff --git a/SabreTools.DatFiles/DatFile.cs b/SabreTools.DatFiles/DatFile.cs
index c171025d..f0d45b13 100644
--- a/SabreTools.DatFiles/DatFile.cs
+++ b/SabreTools.DatFiles/DatFile.cs
@@ -306,45 +306,6 @@ namespace SabreTools.DatFiles
return key;
}
- ///
- /// Get a sanitized Date from an input string
- ///
- /// String to get value from
- /// Date as a string, if possible
- protected static string? CleanDate(string? input)
- {
- // Null in, null out
- if (string.IsNullOrEmpty(input))
- return null;
-
- string date = string.Empty;
- if (input != null)
- {
- if (DateTime.TryParse(input, out DateTime dateTime))
- date = dateTime.ToString();
- else
- date = input;
- }
-
- return date;
- }
-
- ///
- /// Clean a hash string from a Listrom DAT
- ///
- /// Hash string to sanitize
- /// Cleaned string
- protected static string CleanListromHashData(string hash)
- {
- if (hash.StartsWith("CRC"))
- return hash.Substring(4, 8).ToLowerInvariant();
-
- else if (hash.StartsWith("SHA1"))
- return hash.Substring(5, 40).ToLowerInvariant();
-
- return hash;
- }
-
#endregion
#region Writing