Skip to content

Commit 38186f2

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 2cd891c commit 38186f2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

HashifyNet/Algorithms/Jenkins/JenkinsLookup2Config.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ public class JenkinsLookup2Config
4646
/// <value>
4747
/// The seed.
4848
/// </value>
49-
public uint Seed { get; set; } = 0U;
49+
public int Seed { get; set; }
5050

5151
/// <summary>
52-
/// Makes a deep clone of current instance.
52+
/// Makes a deep clone of the current instance.
5353
/// </summary>
5454
/// <returns>A deep clone of the current instance.</returns>
5555
public IJenkinsLookup2Config Clone() =>
@@ -58,4 +58,4 @@ public IJenkinsLookup2Config Clone() =>
5858
Seed = Seed
5959
};
6060
}
61-
}
61+
}

0 commit comments

Comments
 (0)