diff --git a/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlService.cs b/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlService.cs deleted file mode 100644 index 8def3b8016..0000000000 --- a/Ryujinx.HLE/HOS/Services/Pctl/IParentalControlService.cs +++ /dev/null @@ -1,41 +0,0 @@ -using Ryujinx.Common.Logging; -using Ryujinx.HLE.HOS.Ipc; -using System.Collections.Generic; - -namespace Ryujinx.HLE.HOS.Services.Pctl -{ - class IParentalControlService : IpcService - { - private Dictionary _commands; - - public override IReadOnlyDictionary Commands => _commands; - - private bool _initialized = false; - - private bool _needInitialize; - - public IParentalControlService(bool needInitialize = true) - { - _commands = new Dictionary - { - { 1, Initialize } - }; - - _needInitialize = needInitialize; - } - - public long Initialize(ServiceCtx context) - { - if (_needInitialize && !_initialized) - { - _initialized = true; - } - else - { - Logger.PrintWarning(LogClass.ServicePctl, "Service is already initialized!"); - } - - return 0; - } - } -}