diff --git a/src/BizHawk.Client.Common/lua/LuaHelperLibs/NESLuaLibrary.cs b/src/BizHawk.Client.Common/lua/LuaHelperLibs/NESLuaLibrary.cs
index 757394a5ae..13e0c9098d 100644
--- a/src/BizHawk.Client.Common/lua/LuaHelperLibs/NESLuaLibrary.cs
+++ b/src/BizHawk.Client.Common/lua/LuaHelperLibs/NESLuaLibrary.cs
@@ -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
{
+ ///
+ /// 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
+ ///
[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 logOutputCallback)
: base(luaLibsImpl, apiContainer, logOutputCallback) {}
diff --git a/src/BizHawk.Client.EmuHawk/tools/CDL.cs b/src/BizHawk.Client.EmuHawk/tools/CDL.cs
index de33795bd8..d42fac4086 100644
--- a/src/BizHawk.Client.EmuHawk/tools/CDL.cs
+++ b/src/BizHawk.Client.EmuHawk/tools/CDL.cs
@@ -47,9 +47,6 @@ namespace BizHawk.Client.EmuHawk
UpdateWindowTitle();
}
- [RequiredService]
- private IMemoryDomains MemoryDomains { get; set; }
-
[RequiredService]
private ICodeDataLogger CodeDataLogger { get; set; }