Skip to content

Commit 2cd891c

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 954700e commit 2cd891c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

HashifyNet/Algorithms/Jenkins/JenkinsLookup3Config.cs

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

5454
/// <summary>
5555
/// Gets the second seed.
5656
/// </summary>
5757
/// <value>
5858
/// The second seed.
5959
/// </value>
60-
public uint Seed2 { get; set; } = 0U;
60+
public int Seed2 { get; set; }
6161

6262
/// <summary>
6363
/// Makes a deep clone of current instance.
@@ -71,4 +71,4 @@ public IJenkinsLookup3Config Clone() =>
7171
Seed2 = Seed2
7272
};
7373
}
74-
}
74+
}

0 commit comments

Comments
 (0)