Skip to content

Commit

Permalink
Renamed implicit operator parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
stidsborg committed Dec 29, 2024
1 parent ff694bf commit 3600af4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/Cleipnir.ResilientFunctions/Domain/TimeoutId.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public TimeoutId(string value)
Value = value;
}

public static implicit operator TimeoutId(string flowInstance) => new(flowInstance);
public static implicit operator TimeoutId(string timeoutId) => new(timeoutId);
public override string ToString() => Value;
public static bool operator ==(TimeoutId id1, TimeoutId id2) => id1.Equals(id2);
public static bool operator !=(TimeoutId id1, TimeoutId id2) => !(id1 == id2);
Expand Down

0 comments on commit 3600af4

Please sign in to comment.