Remove unused service props
unused since1ce8a368d
and70e0954f2
, respectively
This commit is contained in:
parent
5c48cb96fd
commit
22a328cd36
|
@ -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) {}
|
||||
|
||||
|
|
|
@ -47,9 +47,6 @@ namespace BizHawk.Client.EmuHawk
|
|||
UpdateWindowTitle();
|
||||
}
|
||||
|
||||
[RequiredService]
|
||||
private IMemoryDomains MemoryDomains { get; set; }
|
||||
|
||||
[RequiredService]
|
||||
private ICodeDataLogger CodeDataLogger { get; set; }
|
||||
|
||||
|
|
Loading…
Reference in New Issue