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.Tests | |
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.Tests')
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestAlu32.cs | 1 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs | 1 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestAluImm32.cs | 1 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestMul32.cs | 1 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs | 1 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs | 1 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs | 1 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs | 1 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestT32Alu.cs | 4 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestT32Mem.cs | 4 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/CpuTestThumb.cs | 1 | ||||
-rw-r--r-- | Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs | 2 |
12 files changed, 2 insertions, 17 deletions
diff --git a/Ryujinx.Tests/Cpu/CpuTestAlu32.cs b/Ryujinx.Tests/Cpu/CpuTestAlu32.cs index 170bf98b..f04aa22e 100644 --- a/Ryujinx.Tests/Cpu/CpuTestAlu32.cs +++ b/Ryujinx.Tests/Cpu/CpuTestAlu32.cs @@ -1,7 +1,6 @@ #define Alu32 using NUnit.Framework; -using System; namespace Ryujinx.Tests.Cpu { diff --git a/Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs b/Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs index 0a0302c2..c402c4ba 100644 --- a/Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs +++ b/Ryujinx.Tests/Cpu/CpuTestAluBinary32.cs @@ -2,7 +2,6 @@ using ARMeilleure.State; using NUnit.Framework; -using System; namespace Ryujinx.Tests.Cpu { diff --git a/Ryujinx.Tests/Cpu/CpuTestAluImm32.cs b/Ryujinx.Tests/Cpu/CpuTestAluImm32.cs index ea5c3b05..440642c3 100644 --- a/Ryujinx.Tests/Cpu/CpuTestAluImm32.cs +++ b/Ryujinx.Tests/Cpu/CpuTestAluImm32.cs @@ -1,7 +1,6 @@ #define AluRs32 using NUnit.Framework; -using System.Runtime.CompilerServices; namespace Ryujinx.Tests.Cpu { diff --git a/Ryujinx.Tests/Cpu/CpuTestMul32.cs b/Ryujinx.Tests/Cpu/CpuTestMul32.cs index 4bdb2ae2..daa6d460 100644 --- a/Ryujinx.Tests/Cpu/CpuTestMul32.cs +++ b/Ryujinx.Tests/Cpu/CpuTestMul32.cs @@ -1,7 +1,6 @@ #define Mul32 using NUnit.Framework; -using System; namespace Ryujinx.Tests.Cpu { diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs b/Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs index b7cb2636..e55574ff 100644 --- a/Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs +++ b/Ryujinx.Tests/Cpu/CpuTestSimdLogical32.cs @@ -2,7 +2,6 @@ using ARMeilleure.State; using NUnit.Framework; -using System; namespace Ryujinx.Tests.Cpu { diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs b/Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs index aba0f02d..bb253643 100644 --- a/Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs +++ b/Ryujinx.Tests/Cpu/CpuTestSimdMov32.cs @@ -2,7 +2,6 @@ using ARMeilleure.State; using NUnit.Framework; -using System; namespace Ryujinx.Tests.Cpu { diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs b/Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs index be3c0eb6..0635d8fc 100644 --- a/Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs +++ b/Ryujinx.Tests/Cpu/CpuTestSimdReg32.cs @@ -2,7 +2,6 @@ using ARMeilleure.State; using NUnit.Framework; -using System; using System.Collections.Generic; namespace Ryujinx.Tests.Cpu diff --git a/Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs b/Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs index e1b367ed..cf960dfd 100644 --- a/Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs +++ b/Ryujinx.Tests/Cpu/CpuTestSimdRegElem32.cs @@ -2,7 +2,6 @@ using ARMeilleure.State; using NUnit.Framework; -using System; namespace Ryujinx.Tests.Cpu { diff --git a/Ryujinx.Tests/Cpu/CpuTestT32Alu.cs b/Ryujinx.Tests/Cpu/CpuTestT32Alu.cs index 6dc9b7c7..caef53d8 100644 --- a/Ryujinx.Tests/Cpu/CpuTestT32Alu.cs +++ b/Ryujinx.Tests/Cpu/CpuTestT32Alu.cs @@ -1,6 +1,4 @@ -using ARMeilleure.State; -using NUnit.Framework; -using System; +using NUnit.Framework; namespace Ryujinx.Tests.Cpu { diff --git a/Ryujinx.Tests/Cpu/CpuTestT32Mem.cs b/Ryujinx.Tests/Cpu/CpuTestT32Mem.cs index 024548ae..e3f8d7ec 100644 --- a/Ryujinx.Tests/Cpu/CpuTestT32Mem.cs +++ b/Ryujinx.Tests/Cpu/CpuTestT32Mem.cs @@ -1,6 +1,4 @@ -using ARMeilleure.State; -using NUnit.Framework; -using System; +using NUnit.Framework; namespace Ryujinx.Tests.Cpu { diff --git a/Ryujinx.Tests/Cpu/CpuTestThumb.cs b/Ryujinx.Tests/Cpu/CpuTestThumb.cs index 885bd868..da7c6e92 100644 --- a/Ryujinx.Tests/Cpu/CpuTestThumb.cs +++ b/Ryujinx.Tests/Cpu/CpuTestThumb.cs @@ -1,6 +1,5 @@ using ARMeilleure.State; using NUnit.Framework; -using System; namespace Ryujinx.Tests.Cpu { diff --git a/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs b/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs index 4fb02c2b..cec5a668 100644 --- a/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs +++ b/Ryujinx.Tests/Cpu/PrecomputedMemoryThumbTestCase.cs @@ -1,5 +1,3 @@ -using System; - namespace Ryujinx.Tests.Cpu { public struct PrecomputedMemoryThumbTestCase |