Skip to content

Commit b7f8a50

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

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

HashifyNet/Algorithms/XxHash/XxHashConfig.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ public class XxHashConfig
4949
/// <value>
5050
/// The seed.
5151
/// </value>
52-
public long Seed { get; set; } = 0UL;
52+
public long Seed { get; set; }
5353

5454
/// <summary>
55-
/// Makes a deep clone of current instance.
55+
/// Makes a deep clone of the current instance.
5656
/// </summary>
5757
/// <returns>A deep clone of the current instance.</returns>
5858
public IXxHashConfig Clone() =>
@@ -62,5 +62,5 @@ public IXxHashConfig Clone() =>
6262
Seed = Seed
6363
};
6464
}
65-
6665
}
66+

0 commit comments

Comments
 (0)