Skip to content

Commit

Permalink
Fix null error.
Browse files Browse the repository at this point in the history
  • Loading branch information
BytingBulldogs3539 committed Mar 11, 2024
1 parent 9b253b4 commit 4170a24
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4170a24

Please sign in to comment.