Skip to content

Commit

Permalink
Use concrete type for private variable
Browse files Browse the repository at this point in the history
  • Loading branch information
nurhafiz committed May 1, 2024
1 parent adaf95e commit 5826472
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Toimik.WarcProtocol/Toimik.WarcProtocol.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<AssemblyName>Toimik.WarcProtocol</AssemblyName>
<PackageVersion>0.10.3</PackageVersion>
<PackageVersion>0.10.4</PackageVersion>
<Authors>Nurhafiz</Authors>
<Version>0.10.3</Version>
<Version>0.10.4</Version>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Company>Toimik</Company>
<Description>
Expand Down
2 changes: 1 addition & 1 deletion src/Toimik.WarcProtocol/WarcParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public sealed class WarcParser(RecordFactory? recordFactory = null, CompressionS
Record.FieldForContentLength,
};

private static readonly ISet<string> SupportedVersions = new HashSet<string>
private static readonly HashSet<string> SupportedVersions = new HashSet<string>
{
"1.0",
"1.1",
Expand Down

0 comments on commit 5826472

Please sign in to comment.