From dc90f9af3f30f7743c302e72deb18d061384d2f6 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 6 May 2020 15:56:08 -0700 Subject: [PATCH] Simplify Options constructor --- DICUI.Library/Data/Options.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/DICUI.Library/Data/Options.cs b/DICUI.Library/Data/Options.cs index 670e9e6e..369be6ea 100644 --- a/DICUI.Library/Data/Options.cs +++ b/DICUI.Library/Data/Options.cs @@ -175,17 +175,11 @@ namespace DICUI.Data #endregion - /// - /// Empty constructor for legacy compatiblity - /// - /// TODO: Eventually remove this empty constructor - public Options() { } - /// /// Constructor taking a dictionary for settings /// /// - public Options(Dictionary settings) + public Options(Dictionary settings = null) { this._settings = settings; }