Remove unused service props

unused since 1ce8a368d and 70e0954f2, respectively
This commit is contained in:
YoshiRulz 2022-07-30 07:48:25 +10:00
parent 5c48cb96fd
commit 22a328cd36
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
2 changed files with 4 additions and 11 deletions

View File

@ -1,7 +1,6 @@
using System;
using System.ComponentModel;
using BizHawk.Emulation.Common;
using BizHawk.Emulation.Cores.Nintendo.NES;
using BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES;
@ -9,16 +8,13 @@ using BizHawk.Emulation.Cores.Consoles.Nintendo.QuickNES;
// ReSharper disable UnusedAutoPropertyAccessor.Local
namespace BizHawk.Client.Common
{
/// <remarks>
/// TODO: perhaps with the new core config system, one could automatically bring out all of the settings to a lua table, with names.
/// that would be completely arbitrary and would remove the whole requirement for this mess
/// </remarks>
[Description("Functions related specifically to Nes Cores")]
public sealed class NESLuaLibrary : LuaLibraryBase
{
// TODO:
// perhaps with the new core config system, one could
// automatically bring out all of the settings to a lua table, with names. that
// would be completely arbitrary and would remove the whole requirement for this mess
[OptionalService]
private IMemoryDomains MemoryDomains { get; set; }
public NESLuaLibrary(IPlatformLuaLibEnv luaLibsImpl, ApiContainer apiContainer, Action<string> logOutputCallback)
: base(luaLibsImpl, apiContainer, logOutputCallback) {}

View File

@ -47,9 +47,6 @@ namespace BizHawk.Client.EmuHawk
UpdateWindowTitle();
}
[RequiredService]
private IMemoryDomains MemoryDomains { get; set; }
[RequiredService]
private ICodeDataLogger CodeDataLogger { get; set; }