Skip to content

Commit a89a8d7

Browse files
committed
Removed unused namespaces.
1 parent 8d6fc23 commit a89a8d7

29 files changed

+5
-100
lines changed

SmartSystemMenu/AutoStarter.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Diagnostics;
1+
using System.Diagnostics;
32
using Microsoft.Win32;
43

54
namespace SmartSystemMenu

SmartSystemMenu/EnumWindows.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
using System;
22
using System.Collections.Generic;
33
using System.Linq;
4-
using System.Text;
5-
using System.Windows.Forms;
6-
using System.Runtime.InteropServices;
74
using System.Diagnostics;
85

96
namespace SmartSystemMenu
@@ -47,7 +44,7 @@ private static bool EnumWindowCallback(IntPtr hwnd, int lParam)
4744
#if WIN32
4845
isAdd = !Environment.Is64BitOperatingSystem || PlatformUtils.IsWow64Process(pid);
4946
#else
50-
isAdd = Environment.Is64BitOperatingSystem && !PlatformUtility.IsWow64Process(pid);
47+
isAdd = Environment.Is64BitOperatingSystem && !PlatformUtils.IsWow64Process(pid);
5148
#endif
5249

5350
if (!isAdd) return true;

SmartSystemMenu/Extensions/PriorityExtensions.cs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
6-
namespace SmartSystemMenu.Extensions
1+
namespace SmartSystemMenu.Extensions
72
{
83
static class PriorityExtensions
94
{

SmartSystemMenu/Extensions/ProcessExtensions.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
52
using System.Diagnostics;
63

74
namespace SmartSystemMenu.Extensions

SmartSystemMenu/Forms/AboutForm.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Windows.Forms;
3-
using SmartSystemMenu;
43

54
namespace SmartSystemMenu.Forms
65
{

SmartSystemMenu/Forms/MainForm.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
using System.IO;
99
using System.Drawing.Imaging;
1010
using System.Text;
11-
using SmartSystemMenu;
1211
using SmartSystemMenu.Extensions;
1312
using SmartSystemMenu.Hooks;
1413

SmartSystemMenu/Hooks/BasicHookEventArgs.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
52

63
namespace SmartSystemMenu.Hooks
74
{

SmartSystemMenu/Hooks/CBTHook.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using SmartSystemMenu;
62

73
namespace SmartSystemMenu.Hooks
84
{

SmartSystemMenu/Hooks/CallWndProcHook.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using SmartSystemMenu;
62

73
namespace SmartSystemMenu.Hooks
84
{

SmartSystemMenu/Hooks/GetMsgHook.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
11
using System;
2-
using System.Collections.Generic;
3-
using System.Linq;
4-
using System.Text;
5-
using SmartSystemMenu;
62

73
namespace SmartSystemMenu.Hooks
84
{

0 commit comments

Comments
 (0)