Skip to content

Commit 141dace

Browse files
committed
refactor: change Implementation property to be settable in HashUtils
1 parent 07a2151 commit 141dace

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CodeLineCounter/Utils/HashUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ public static class HashUtils
77
{
88
private static readonly IHashUtils _defaultImplementation = new HashUtilsService();
99

10-
internal static IHashUtils Implementation { get; } = _defaultImplementation;
10+
internal static IHashUtils Implementation { get; set; } = _defaultImplementation;
1111
public static string ComputeHash(string? input)
1212
{
1313
return Implementation.ComputeHash(input);

0 commit comments

Comments
 (0)