main: Removed unused namespaces and packages

- Removed unused namespaces in DomainForm.cs, MainForm.cs
- Removed DnsClient package reference in FireWalletLite.csproj
This commit is contained in:
Nathan Woodburn 2023-07-07 15:13:54 +10:00
parent 566ba28c80
commit d6462051c2
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1
3 changed files with 2 additions and 35 deletions

View File

@ -1,14 +1,4 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using DnsClient;
using System.Diagnostics;
using FireWallet;
using Newtonsoft.Json.Linq;

View File

@ -17,7 +17,6 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="DnsClient" Version="1.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="QRCoder" Version="1.4.3" />
</ItemGroup>

View File

@ -1,22 +1,7 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Net;
using System.Net.Security;
using System.Security.Cryptography.X509Certificates;
using System.Security.Cryptography;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using FireWallet;
using Newtonsoft.Json.Linq;
using DnsClient;
using DnsClient.Protocol;
using System.Security.Policy;
namespace FireWalletLite
{
@ -537,13 +522,6 @@ namespace FireWalletLite
notifyForm2.ShowDialog();
notifyForm2.Dispose();
}
private void button1_Click(object sender, EventArgs e)
{
DomainForm domainForm = new DomainForm(this, "woodburn");
domainForm.ShowDialog();
domainForm.Dispose();
}
}
public class Batch
{