Skip to content

Commit 21cd037

Browse files
authored
Change uint to int for CLS compliance and remove redundant default value assignments
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent ef3cd53 commit 21cd037

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

HashifyNet/Algorithms/MurmurHash/MurmurHash3Config.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ public class MurmurHash3Config
4949
/// <value>
5050
/// The seed.
5151
/// </value>
52-
public uint Seed { get; set; } = 0U;
52+
public int Seed { get; set; } = 0U;
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 IMurmurHash3Config Clone() =>
@@ -62,4 +62,4 @@ public IMurmurHash3Config Clone() =>
6262
Seed = Seed
6363
};
6464
}
65-
}
65+
}

0 commit comments

Comments
 (0)