Skip to content

Commit 56fbcd0

Browse files
committed
remove unused parms
1 parent ea13f66 commit 56fbcd0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

test/ProgressOnderwijsUtils.Tests/HtmlDslGenerator.cs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -250,9 +250,7 @@ public static class AttributeConstructionMethods
250250
AttributeLookupTable_GeneratedOutputFilePath,
251251
GenerateAttributeLookupTable(
252252
elements.Select(el => (el.elementName, el.attributes)).ToArray(),
253-
globalAttributes,
254-
specificAttributes.ToArray(),
255-
booleanAttributes
253+
globalAttributes
256254
)
257255
),
258256
}.WhereNotNull().ToArray();
@@ -262,9 +260,7 @@ public static class AttributeConstructionMethods
262260

263261
string GenerateAttributeLookupTable(
264262
(string elementName, DistinctArray<string> attributes)[] elements,
265-
HashSet<string> globalAttributes,
266-
string[] specificAttributes,
267-
Dictionary<string, bool?> booleanAttributes)
263+
HashSet<string> globalAttributes)
268264
{
269265
// Generate lookup entries for each element
270266
var elementLookups = elements.Select(el => {

0 commit comments

Comments
 (0)