aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/DummyService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/DummyService.cs')
-rw-r--r--Ryujinx.HLE/HOS/Services/DummyService.cs12
1 files changed, 2 insertions, 10 deletions
diff --git a/Ryujinx.HLE/HOS/Services/DummyService.cs b/Ryujinx.HLE/HOS/Services/DummyService.cs
index 28087bdf..d69441a3 100644
--- a/Ryujinx.HLE/HOS/Services/DummyService.cs
+++ b/Ryujinx.HLE/HOS/Services/DummyService.cs
@@ -1,20 +1,12 @@
-using Ryujinx.HLE.HOS.Ipc;
-using System.Collections.Generic;
-
-namespace Ryujinx.HLE.HOS.Services
+namespace Ryujinx.HLE.HOS.Services
{
class DummyService : IpcService
{
- private Dictionary<int, ServiceProcessRequest> _commands;
-
- public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands;
-
public string ServiceName { get; set; }
public DummyService(string serviceName)
{
- _commands = new Dictionary<int, ServiceProcessRequest>();
ServiceName = serviceName;
}
}
-}
+} \ No newline at end of file