diff --git a/SabreTools.Helper/Objects/Dat/DatFile.cs b/SabreTools.Helper/Objects/Dat/DatFile.cs
index 03bca9d0..34b88947 100644
--- a/SabreTools.Helper/Objects/Dat/DatFile.cs
+++ b/SabreTools.Helper/Objects/Dat/DatFile.cs
@@ -6254,48 +6254,6 @@ namespace SabreTools.Helper
#endregion
- #region Serialization
-
- ///
- /// Serialze object to file
- ///
- /// DatFile to serialize
- /// File to write out to
- /// Name of the outputted file
- public static string Serialize(DatFile df, string output)
- {
- BinaryFormatter bf = new BinaryFormatter();
- string filename = (String.IsNullOrEmpty(output) ? "default.bin" : output);
- Stream outStream = File.Open(filename, FileMode.Create);
- bf.Serialize(outStream, df);
- outStream.Flush();
- outStream.Dispose();
- return filename;
- }
-
- ///
- /// Repopulate object from a file
- ///
- /// Name of the input file to populate from
- /// DatFile populated from the input file
- public static DatFile Deserialize(string input)
- {
- if (!File.Exists(input))
- {
- return new DatFile();
- }
-
- BinaryFormatter bf = new BinaryFormatter();
- Stream output = File.Open(input, FileMode.Open);
- DatFile df = (DatFile)bf.Deserialize(output);
-
- output.Flush();
- output.Dispose();
- return df;
- }
-
- #endregion
-
#region Statistics
///