Skip to content

Commit a17b450

Browse files
committed
Keep full hash of cases file.
1 parent 611aa56 commit a17b450

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/SeqCli/Cli/Commands/Bench/BenchCommand.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,6 @@ static string HashString(string input)
219219
{
220220
using var md5 = MD5.Create();
221221
var bytes = Encoding.ASCII.GetBytes(input);
222-
var hash = Convert.ToHexString(md5.ComputeHash(bytes));
223-
return new string(new [] {hash[4], hash[8], hash[16], hash[24]});
222+
return Convert.ToHexString(md5.ComputeHash(bytes));
224223
}
225224
}

0 commit comments

Comments
 (0)