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

@@ -62,9 +62,6 @@ namespace ModernKeePass.Views.BasePages
/// session. The state will be null the first time a page is visited.</param>
protected void navigationHelper_LoadState(object sender, LoadStateEventArgs e)
{
// TODO: Assign a bindable group to Me.DefaultViewModel("Group")
// TODO: Assign a collection of bindable items to Me.DefaultViewModel("Items")
if (e.PageState == null)
{
// When this is a new page, select the first item automatically unless logical page

View File

@@ -28,9 +28,9 @@ namespace ModernKeePass.Views
_mainFrame = e.Parameter as Frame;
}
private async void SaveButton_OnClick(object sender, RoutedEventArgs e)
private void SaveButton_OnClick(object sender, RoutedEventArgs e)
{
await Model.Save();
Model.Save();
_mainFrame.Navigate(typeof(MainPage));
}