Skip to content

Commit 4e87e71

Browse files
committed
Rename generated Project parameter to matrix
1 parent 41b1bfc commit 4e87e71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Project.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class Project
99
private readonly Function _load;
1010
private readonly Function _main;
1111
private readonly List<Function> _functions;
12-
public Project(string name, string description, string id, int pack_format, Function load, Function main, List<Function> functions, List<List<Function>> generated = null!)
12+
public Project(string name, string description, string id, int pack_format, Function load, Function main, List<Function> functions, List<List<Function>> matrix = null!)
1313
{
1414
// Display fresh SteveSharp Display
1515
Displays.SteveSharpDisplay(name);
@@ -57,8 +57,8 @@ public Project(string name, string description, string id, int pack_format, Func
5757
FunctionIndex.Add(function.Name, function);
5858
}
5959
}
60-
if(generated != null && generated.Count > 0) {
61-
foreach(var list in generated) {
60+
if(matrix != null && matrix.Count > 0) {
61+
foreach(var list in matrix) {
6262
foreach(var fun in list) {
6363
FunctionIndex.Add(fun.Name, fun);
6464
}

0 commit comments

Comments
 (0)