Skip to content

Commit 0e61e23

Browse files
authored
Remove redundant default value assignment
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent c749f13 commit 0e61e23

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

HashifyNet/Algorithms/MurmurHash/MurmurHash3Config.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class MurmurHash3Config
4949
/// <value>
5050
/// The seed.
5151
/// </value>
52-
public int Seed { get; set; } = 0U;
52+
public int Seed { get; set; }
5353

5454
/// <summary>
5555
/// Makes a deep clone of the current instance.
@@ -63,3 +63,4 @@ public IMurmurHash3Config Clone() =>
6363
};
6464
}
6565
}
66+

0 commit comments

Comments
 (0)