diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-10-17 14:55:10 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-17 14:55:10 -0300 |
| commit | 02a8e7fc9369d7882db08a69d108beefb0f98677 (patch) | |
| tree | 6f0e76cdb6c87e2bd7ad4018a67a657a88cbc2a7 /Ryujinx.HLE | |
| parent | b3a4662be15bd63d5b70cf4be21d79959e11ccfc (diff) | |
Remove unnecessary usings (#463)
* Remove unnecessary usings
* Fix CastExpression while I'm at it
Diffstat (limited to 'Ryujinx.HLE')
| -rw-r--r-- | Ryujinx.HLE/FileSystem/SaveHelper.cs | 1 | ||||
| -rw-r--r-- | Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs | 1 | ||||
| -rw-r--r-- | Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CastExpression.cs (renamed from Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CasExpression.cs) | 4 | ||||
| -rw-r--r-- | Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs | 1 | ||||
| -rw-r--r-- | Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs | 1 | ||||
| -rw-r--r-- | Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs | 1 | ||||
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Aud/IAudioRendererManager.cs | 1 | ||||
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs | 2 | ||||
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Mm/IRequest.cs | 1 | ||||
| -rw-r--r-- | Ryujinx.HLE/Utilities/UInt128.cs | 1 |
10 files changed, 1 insertions, 13 deletions
diff --git a/Ryujinx.HLE/FileSystem/SaveHelper.cs b/Ryujinx.HLE/FileSystem/SaveHelper.cs index 087156d2..b74d853c 100644 --- a/Ryujinx.HLE/FileSystem/SaveHelper.cs +++ b/Ryujinx.HLE/FileSystem/SaveHelper.cs @@ -1,6 +1,5 @@ using Ryujinx.HLE.HOS; using System.IO; -using System.Linq; using static Ryujinx.HLE.FileSystem.VirtualFileSystem; diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs index 7e59ab09..ae43fcdb 100644 --- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs +++ b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CallExpression.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Generic; using System.IO; diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CasExpression.cs b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CastExpression.cs index 2415c6c0..c02e9e65 100644 --- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CasExpression.cs +++ b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/CastExpression.cs @@ -1,7 +1,5 @@ -using System; using System.IO; - namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast { public class CastExpression : BaseNode @@ -24,7 +22,7 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast To.PrintLeft(Writer); Writer.Write(">("); From.PrintLeft(Writer); - Writer.Write(")"); + Writer.Write(")"); } } }
\ No newline at end of file diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs index cd534590..2ed4daa4 100644 --- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs +++ b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/InitListExpression.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Generic; using System.IO; diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs index 9720a8e4..f7bfa194 100644 --- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs +++ b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/NodeArray.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Generic; using System.IO; diff --git a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs index 4de66e00..d6efbd0f 100644 --- a/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs +++ b/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/TemplateArguments.cs @@ -1,4 +1,3 @@ -using System; using System.Collections.Generic; using System.IO; diff --git a/Ryujinx.HLE/HOS/Services/Aud/IAudioRendererManager.cs b/Ryujinx.HLE/HOS/Services/Aud/IAudioRendererManager.cs index 49bbbd5a..48a449cc 100644 --- a/Ryujinx.HLE/HOS/Services/Aud/IAudioRendererManager.cs +++ b/Ryujinx.HLE/HOS/Services/Aud/IAudioRendererManager.cs @@ -3,7 +3,6 @@ using Ryujinx.Common.Logging; using Ryujinx.HLE.HOS.Ipc; using Ryujinx.HLE.HOS.Services.Aud.AudioRenderer; using Ryujinx.HLE.Utilities; -using System; using System.Collections.Generic; using static Ryujinx.HLE.HOS.ErrorCode; diff --git a/Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs b/Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs index 254fdae4..155faea3 100644 --- a/Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs +++ b/Ryujinx.HLE/HOS/Services/Irs/IIrSensorServer.cs @@ -1,7 +1,5 @@ using Ryujinx.Common.Logging; using Ryujinx.HLE.HOS.Ipc; -using Ryujinx.HLE.HOS.Kernel; -using System; using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services.Irs diff --git a/Ryujinx.HLE/HOS/Services/Mm/IRequest.cs b/Ryujinx.HLE/HOS/Services/Mm/IRequest.cs index be2aa4e4..88cd57cf 100644 --- a/Ryujinx.HLE/HOS/Services/Mm/IRequest.cs +++ b/Ryujinx.HLE/HOS/Services/Mm/IRequest.cs @@ -1,6 +1,5 @@ using Ryujinx.Common.Logging; using Ryujinx.HLE.HOS.Ipc; -using System; using System.Collections.Generic; namespace Ryujinx.HLE.HOS.Services.Mm diff --git a/Ryujinx.HLE/Utilities/UInt128.cs b/Ryujinx.HLE/Utilities/UInt128.cs index 95b3d624..14e04e4a 100644 --- a/Ryujinx.HLE/Utilities/UInt128.cs +++ b/Ryujinx.HLE/Utilities/UInt128.cs @@ -1,4 +1,3 @@ -using Ryujinx.HLE.Utilities; using System; using System.IO; using System.Linq; |
