Skip to content

Commit ebc51a9

Browse files
committed
Remove unneeded parm
1 parent 56fbcd0 commit ebc51a9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

test/ProgressOnderwijsUtils.Tests/HtmlDslGenerator.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,7 @@ public static class AttributeConstructionMethods
249249
AssertFileExistsAndApproveContent(
250250
AttributeLookupTable_GeneratedOutputFilePath,
251251
GenerateAttributeLookupTable(
252-
elements.Select(el => (el.elementName, el.attributes)).ToArray(),
253-
globalAttributes
252+
elements.Select(el => (el.elementName, el.attributes)).ToArray()
254253
)
255254
),
256255
}.WhereNotNull().ToArray();
@@ -259,8 +258,7 @@ public static class AttributeConstructionMethods
259258
return;
260259

261260
string GenerateAttributeLookupTable(
262-
(string elementName, DistinctArray<string> attributes)[] elements,
263-
HashSet<string> globalAttributes)
261+
(string elementName, DistinctArray<string> attributes)[] elements)
264262
{
265263
// Generate lookup entries for each element
266264
var elementLookups = elements.Select(el => {

0 commit comments

Comments
 (0)