From 4170a2440a964fd0c124031ecdb1db2b3b17e94d Mon Sep 17 00:00:00 2001 From: BytingBulldogs3539 Date: Sun, 10 Mar 2024 21:38:40 -0400 Subject: [PATCH] Fix null error. --- .../Motion-Profile-Mapper/Utilities/INIVariable.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Motion-Profile-Mapper/Motion-Profile-Mapper/Utilities/INIVariable.cs b/Motion-Profile-Mapper/Motion-Profile-Mapper/Utilities/INIVariable.cs index 92a24c7..a2bbddc 100644 --- a/Motion-Profile-Mapper/Motion-Profile-Mapper/Utilities/INIVariable.cs +++ b/Motion-Profile-Mapper/Motion-Profile-Mapper/Utilities/INIVariable.cs @@ -13,7 +13,7 @@ class INIVariable public string value { get; set; } public string comment { get; set; } - public INIVariable(string name = null, string type = null, string value = null, string comment = null) + public INIVariable(string name = "", string type = "", string value = "", string comment = "") { this.name = name; this.type = type;