diff options
author | Nicholas Rodine <halfofastaple@gmail.com> | 2022-08-18 11:04:54 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-18 18:04:54 +0200 |
commit | 951700fdd8f54fb34ffe8a3fb328a68b5bf37abe (patch) | |
tree | 97d2e6dfbdf68e2ede07b0414767bdcbb5498078 /Ryujinx.Common | |
parent | eb6430f10341909704e6891b4ded633b6ce1e47a (diff) |
Removed unused usings. (#3593)1.1.223
* Removed unused usings.
* Added back using, now that it's used.
* Removed extra whitespace.
Diffstat (limited to 'Ryujinx.Common')
7 files changed, 1 insertions, 9 deletions
diff --git a/Ryujinx.Common/Configuration/Hid/Controller/GenericControllerInputConfig.cs b/Ryujinx.Common/Configuration/Hid/Controller/GenericControllerInputConfig.cs index da8ad797..d7f0e788 100644 --- a/Ryujinx.Common/Configuration/Hid/Controller/GenericControllerInputConfig.cs +++ b/Ryujinx.Common/Configuration/Hid/Controller/GenericControllerInputConfig.cs @@ -1,8 +1,6 @@ using Ryujinx.Common.Configuration.Hid.Controller.Motion; using System; -using System.ComponentModel; using System.Text.Json.Serialization; -using NotImplementedException = System.NotImplementedException; namespace Ryujinx.Common.Configuration.Hid.Controller { diff --git a/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsProfile.cs b/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsProfile.cs index 5a325d08..f1bfee82 100644 --- a/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsProfile.cs +++ b/Ryujinx.Common/GraphicsDriver/NVAPI/NvdrsProfile.cs @@ -1,5 +1,4 @@ -using System; -using System.Runtime.InteropServices; +using System.Runtime.InteropServices; namespace Ryujinx.Common.GraphicsDriver.NVAPI { diff --git a/Ryujinx.Common/Logging/Targets/ConsoleLogTarget.cs b/Ryujinx.Common/Logging/Targets/ConsoleLogTarget.cs index 54e9e85c..7b77c4f2 100644 --- a/Ryujinx.Common/Logging/Targets/ConsoleLogTarget.cs +++ b/Ryujinx.Common/Logging/Targets/ConsoleLogTarget.cs @@ -1,5 +1,4 @@ using System; -using System.Collections.Concurrent; namespace Ryujinx.Common.Logging { diff --git a/Ryujinx.Common/Logging/Targets/FileLogTarget.cs b/Ryujinx.Common/Logging/Targets/FileLogTarget.cs index e83b26cd..401fe91b 100644 --- a/Ryujinx.Common/Logging/Targets/FileLogTarget.cs +++ b/Ryujinx.Common/Logging/Targets/FileLogTarget.cs @@ -1,7 +1,6 @@ using System; using System.IO; using System.Linq; -using System.Reflection; namespace Ryujinx.Common.Logging { diff --git a/Ryujinx.Common/System/ForceDpiAware.cs b/Ryujinx.Common/System/ForceDpiAware.cs index f1aa3e8e..d40d5f5e 100644 --- a/Ryujinx.Common/System/ForceDpiAware.cs +++ b/Ryujinx.Common/System/ForceDpiAware.cs @@ -3,7 +3,6 @@ using System; using System.Drawing; using System.Globalization; using System.Runtime.InteropServices; -using System.Runtime.Versioning; namespace Ryujinx.Common.System { diff --git a/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs b/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs index fdc8fb6a..ed301e02 100644 --- a/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs +++ b/Ryujinx.Common/SystemInfo/WindowsSystemInfo.cs @@ -1,5 +1,4 @@ using System; -using System.Globalization; using System.Management; using System.Runtime.InteropServices; using System.Runtime.Versioning; diff --git a/Ryujinx.Common/Utilities/BitUtils.cs b/Ryujinx.Common/Utilities/BitUtils.cs index 5c68dc9e..a42e2cc7 100644 --- a/Ryujinx.Common/Utilities/BitUtils.cs +++ b/Ryujinx.Common/Utilities/BitUtils.cs @@ -1,4 +1,3 @@ -using System; using System.Numerics; namespace Ryujinx.Common |