diff --git a/Crypto Notepad/Forms/MainForm.cs b/Crypto Notepad/Forms/MainForm.cs index 831a096..50c72de 100644 --- a/Crypto Notepad/Forms/MainForm.cs +++ b/Crypto Notepad/Forms/MainForm.cs @@ -1,4 +1,4 @@ -using Crypto_Notepad.Properties; +using Crypto_Notepad.Properties; using System; using System.ComponentModel; using System.Diagnostics; @@ -152,11 +152,6 @@ private async Task DecryptAES() private async void OpenAsotiations() { - EnterKeyForm enterKeyForm = new EnterKeyForm - { - Owner = this, - StartPosition = FormStartPosition.CenterScreen - }; string fileExtension = Path.GetExtension(args[1]); PublicVar.openFileName = Path.GetFileName(args[1]); openFileDialog.FileName = Path.GetFullPath(args[1]); @@ -178,11 +173,6 @@ private async void OpenAsotiations() private async void SendTo() { - EnterKeyForm enterKeyForm = new EnterKeyForm - { - Owner = this, - StartPosition = FormStartPosition.CenterScreen - }; string fileExtension = Path.GetExtension(argsPath); openFileDialog.FileName = Path.GetFullPath(argsPath); PublicVar.openFileName = Path.GetFileName(argsPath);