diff --git a/GameRes/ArchiveFormat.cs b/GameRes/ArchiveFormat.cs index 4e561d45..70ba2d43 100644 --- a/GameRes/ArchiveFormat.cs +++ b/GameRes/ArchiveFormat.cs @@ -85,10 +85,6 @@ namespace GameRes static public Stream CreateFile (string filename) { filename = CreatePath (filename); - if (File.Exists (filename)) - { - // query somehow whether to overwrite existing file or not. - } return File.Create (filename); } @@ -151,10 +147,4 @@ namespace GameRes } public delegate ArchiveOperation EntryCallback (int num, Entry entry, string description); - - public class OverwriteEventArgs : EventArgs - { - public string Filename { get; set; } - public bool Overwrite { get; set; } - } }