diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Bcat/IBcatService.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Bcat/IBcatService.cs | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Bcat/IBcatService.cs b/Ryujinx.HLE/HOS/Services/Bcat/IBcatService.cs index dfd67304..6fdcba46 100644 --- a/Ryujinx.HLE/HOS/Services/Bcat/IBcatService.cs +++ b/Ryujinx.HLE/HOS/Services/Bcat/IBcatService.cs @@ -1,21 +1,7 @@ -using Ryujinx.HLE.HOS.Ipc; -using System.Collections.Generic; - namespace Ryujinx.HLE.HOS.Services.Bcat { class IBcatService : IpcService { - private Dictionary<int, ServiceProcessRequest> _commands; - - public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => _commands; - - public IBcatService() - { - _commands = new Dictionary<int, ServiceProcessRequest> - { - // ... - }; - } - + public IBcatService() { } } -} +}
\ No newline at end of file |
