chore: remove public definitioins used for no good reason

This commit is contained in:
citizen-VM 2020-08-24 21:31:56 +02:00
parent 272f3e58aa
commit 83e73ae619
Signed by: wanderer
GPG Key ID: 6391444A736EEE7E

View File

@ -26,7 +26,7 @@ namespace KRY_0x01_ng
public string restore_order(string str)
string restore_order(string str)
{
string alpha_str = Regex.Replace(str, "SPACEBRO", " ");
Regex.Replace(alpha_str, "COMMABRO", ",");
@ -41,7 +41,7 @@ namespace KRY_0x01_ng
return Regex.Replace(nustr, ".", "DOTBRO");
}
public string pad(string str)
string pad(string str)
{
string padded_str = "";
if (str.Length > 0)