Skip to content

Commit efc1bfc

Browse files
committed
Fix warning
1 parent 4bdac60 commit efc1bfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FileHashGenerator/FileHashGenerator.Applications/Services/HexadecimalFormatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ internal class HexadecimalFormatter : IHashFormatter
44
{
55
public bool IsCaseSensitive => false;
66

7-
public string FormatHash(byte[] hash) => BitConverter.ToString(hash).Replace("-", "", StringComparison.Ordinal);
7+
public string FormatHash(byte[] hash) => Convert.ToHexString(hash);
88
}

0 commit comments

Comments
 (0)