refactor: unnecessary assignment

This commit is contained in:
citizen-VM 2020-08-24 02:46:30 +02:00
parent e9af34277e
commit 24862f616e
Signed by: wanderer
GPG Key ID: 6391444A736EEE7E

View File

@ -100,8 +100,7 @@ namespace KRY_0x01_ng
TextBox tb_pruned_k = textBox2;
TextBox tb_nualph = textBox3;
tb_pruned_k.Text = str_to_check;
char[] transient_alph = new char[25];
transient_alph = alphabet.Except(str_to_check.ToArray()).ToArray();
char[] transient_alph = alphabet.Except(str_to_check.ToArray()).ToArray();
string transientalph_str = "";
for (int i = 0; i < transient_alph.Length; i++)
{