Skip to content

Commit cdbbaaa

Browse files
authored
Change ulong to long for CLS Compliance and remove redundant default value assignments
Signed-off-by: Xen <lordofxen@deskasoft.com>
1 parent 2abb362 commit cdbbaaa

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

HashifyNet/Algorithms/MetroHash/MetroHashConfig.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ public class MetroHashConfig
4646
/// <value>
4747
/// The seed value.
4848
/// </value>
49-
public ulong Seed { get; set; } = 0;
49+
public long 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 IMetroHashConfig Clone() =>
@@ -59,4 +59,4 @@ public IMetroHashConfig Clone() =>
5959
HashSizeInBits = this.HashSizeInBits
6060
};
6161
}
62-
}
62+
}

0 commit comments

Comments
 (0)