Skip to content

Commit

Permalink
Remove a debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
bashhike committed Aug 30, 2016
1 parent deed510 commit 89b94ef
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion DiaryApp/NewEntryWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ private void CancelNewEntry_Click(object sender, RoutedEventArgs e)
private void SubmitNewEntry_Click(object sender, RoutedEventArgs e)
{
string DiaryEntryText = NewEntryText.Text ;
MessageBox.Show(UserPass);
DiaryEntryText = StringCipher.Encrypt(DiaryEntryText,UserPass);
string filename = DateTime.Now.ToString("ddMMMyyyy_HHmmss");
filename = MainWindow.CurrentPath + "\\" + UserName + "-" +filename + ".diary";
Expand Down

0 comments on commit 89b94ef

Please sign in to comment.