Skip to content

Commit 7ecd860

Browse files
committed
Use "ComputeHashCode" for collections
1 parent fd838b2 commit 7ecd860

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Copyright>(c) $([System.DateTime]::Now.Year), Pawel Gerr. All rights reserved.</Copyright>
5-
<VersionPrefix>6.5.0</VersionPrefix>
5+
<VersionPrefix>6.5.1</VersionPrefix>
66
<Authors>Pawel Gerr</Authors>
77
<GenerateDocumentationFile>true</GenerateDocumentationFile>
88
<PackageProjectUrl>https://github.com/PawelGerr/Thinktecture.Runtime.Extensions</PackageProjectUrl>

src/Thinktecture.Runtime.Extensions.SourceGenerator/CodeAnalysis/SmartEnums/ConstructorState.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ public override bool Equals(object? obj)
3131

3232
public override int GetHashCode()
3333
{
34-
return Arguments.GetHashCode();
34+
return Arguments.ComputeHashCode();
3535
}
3636
}

0 commit comments

Comments
 (0)