We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcd1006 commit 2a497f9Copy full SHA for 2a497f9
Core/Cleipnir.ResilientFunctions/Domain/ReplicaId.cs
@@ -4,7 +4,7 @@ namespace Cleipnir.ResilientFunctions.Domain;
4
5
public record ReplicaId(Guid AsGuid) : IComparable<ReplicaId>
6
{
7
- public static ReplicaId NewId() => new ReplicaId(Guid.NewGuid());
+ public static ReplicaId NewId() => new(Guid.NewGuid());
8
9
public int CompareTo(ReplicaId? other)
10
0 commit comments