From 195d321bbe133103a1d045df31f163cc16e81b64 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sat, 7 Feb 2026 21:13:17 -0500 Subject: [PATCH] Remove passthrough property on Options --- CHANGELIST.md | 1 + MPF.Frontend/Options.cs | 14 -------------- 2 files changed, 1 insertion(+), 14 deletions(-) diff --git a/CHANGELIST.md b/CHANGELIST.md index bed563c6..ba3879ea 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -34,6 +34,7 @@ - Further cleanup in Options - Move dump settings next to execution contexts - Introduce base dump settings type +- Remove passthrough property on Options ### 3.6.0 (2025-11-28) diff --git a/MPF.Frontend/Options.cs b/MPF.Frontend/Options.cs index 94c46253..962e117a 100644 --- a/MPF.Frontend/Options.cs +++ b/MPF.Frontend/Options.cs @@ -71,20 +71,6 @@ namespace MPF.Frontend #endregion - #region Passthrough Properties - - /// - /// All settings in the form of a dictionary - /// - /// TODO: Remove when Options is no longer relevant - [JsonIgnore] - public Dictionary Settings - { - get { return ConvertToDictionary(); } - } - - #endregion - #region Constructors ///