diff --git a/ATA-GUI/Forms/ShellCommandsForm.cs b/ATA-GUI/Forms/ShellCommandsForm.cs index 4c464bf..c911a08 100644 --- a/ATA-GUI/Forms/ShellCommandsForm.cs +++ b/ATA-GUI/Forms/ShellCommandsForm.cs @@ -1,5 +1,4 @@ using System; -using System.Collections.Generic; using System.Windows.Forms; using ATA_GUI.Classes; using ATA_GUI.Utils; @@ -9,7 +8,6 @@ namespace ATA_GUI.Forms public partial class ShellCommandsForm : Form { private readonly string Package; - private readonly List Permissions; public ShellCommandsForm(string package) { diff --git a/ATA-GUI/Forms/UpdateForm.cs b/ATA-GUI/Forms/UpdateForm.cs index 4dfa1a8..a1649bd 100644 --- a/ATA-GUI/Forms/UpdateForm.cs +++ b/ATA-GUI/Forms/UpdateForm.cs @@ -1,4 +1,3 @@ -using ATA_GUI.Utils; using System; using System.IO; using System.IO.Compression; @@ -6,6 +5,7 @@ using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; +using ATA_GUI.Utils; namespace ATA_GUI {