Removed unused anti corruption code

This commit is contained in:
BONNEVILLE Geoffroy
2018-06-18 15:39:01 +02:00
parent b1ded11fa5
commit e9601e8d13
9 changed files with 26 additions and 67 deletions

View File

@@ -23,12 +23,12 @@ namespace ModernKeePass.Interfaces
bool IsClosed { get; }
bool HasChanged { get; set; }
Task Open(CompositeKey key, bool createNew = false);
Task ReOpen();
void Open(CompositeKey key, bool createNew = false);
void ReOpen();
void Save();
void Save(StorageFile file);
void CreateRecycleBin(string title);
void AddDeletedItem(PwUuid id);
Task Close(bool releaseFile = true);
void Close(bool releaseFile = true);
}
}