Skip to content

Commit

Permalink
Code Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Gorkido committed Sep 17, 2021
1 parent 4653d30 commit 7983c5d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cleaner-Form.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ private void Rainbow_Text_Tick(object sender, EventArgs e)
private void Exit_MouseDown(object sender, MouseEventArgs e)
{
FormCollection AllForms = Application.OpenForms;
Boolean FormOpen = false;
bool FormOpen = false;
Form OpenedForm = new Form();
foreach (Form form in AllForms)
{
Expand Down
3 changes: 1 addition & 2 deletions Detector-Form.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Threading;
using System.Windows.Forms;

namespace CSGO_Cheat_Cleaner_Detector
Expand Down Expand Up @@ -57,7 +56,7 @@ private void Rainbow_Text_Tick(object sender, EventArgs e)
private void Exit_MouseDown(object sender, MouseEventArgs e)
{
FormCollection AllForms = Application.OpenForms;
Boolean FormOpen = false;
bool FormOpen = false;
Form OpenedForm = new Form();
foreach (Form form in AllForms)
{
Expand Down
1 change: 0 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using System;
using System.Net.NetworkInformation;
using System.Runtime.InteropServices;
using System.Windows.Forms;

namespace CSGO_Cheat_Cleaner_Detector
Expand Down

0 comments on commit 7983c5d

Please sign in to comment.