We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 116da42 commit 6905fa9Copy full SHA for 6905fa9
src/Orleans.Core.Abstractions/IDs/SiloAddress.cs
@@ -280,9 +280,7 @@ internal int GetConsistentHashCode(int seed)
280
BinaryPrimitives.WriteInt32LittleEndian(buf[20..], Generation);
281
BinaryPrimitives.WriteInt32LittleEndian(buf[24..], seed);
282
283
- hashCode = (int)StableHash.ComputeHash(buf);
284
- hashCodeSet = true;
285
- return hashCode;
+ return (int)StableHash.ComputeHash(buf);
286
}
287
288
private int CalculateConsistentHashCode()
0 commit comments