Skip to content

Commit

Permalink
chore: Fix backport cherry-picking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dr1rrb authored Apr 23, 2024
1 parent c1e55a9 commit d46e6d5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Uno.Extensions.Core/Option.T.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,13 +166,9 @@ public override string ToString()
{
OptionType.Undefined => $"Undefined<{typeof(T).Name}>",
OptionType.None => $"None<{typeof(T).Name}>",
<<<<<<< HEAD
_ => $"Some({(_value is IEnumerable enumerable ? string.Join(",", enumerable.Cast<object>()) : _value)})",
=======
_ when _value is null => "Some(--null--)",
_ when _value is string str => $"Some({str})",
_ when _value is IEnumerable enumerable => $"Some({string.Join(",", enumerable.Cast<object>())})",
_ => $"Some({_value})",
>>>>>>> 210896929 (fix(mvux): Properties update might be defferred too long if dispatcher is under heavy stress)
};
}

0 comments on commit d46e6d5

Please sign in to comment.