Complete Class bug fix

This commit is contained in:
2024-11-01 17:04:20 -07:00
parent 2b16357d44
commit dcaaba3614
7 changed files with 44 additions and 29 deletions

View File

@ -128,7 +128,7 @@ internal class Header
return new(results);
}
public static Header? Get(string[] lines, string site, string summaryLine)
public static Header? Get(ReadOnlyCollection<string> lines, string site, string summaryLine)
{
Header? result;
string json;
@ -185,4 +185,4 @@ internal class Header
[JsonSerializable(typeof(Header))]
internal partial class HeaderSourceGenerationContext : JsonSerializerContext
{
}
}