Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Address feedback
  • Loading branch information
eiriktsarpalis authored and github-actions committed Nov 28, 2023
commit dec00601605cc5f679109332392e5aa1e125b283
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ internal override bool OnTryRead(
Type typeToConvert,
JsonSerializerOptions options,
scoped ref ReadStack state,
[MaybeNullWhen(false)] out Memory<T> value)
out Memory<T> value)
{
if (reader.TokenType is JsonTokenType.Null)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ internal override bool OnTryRead(
Type typeToConvert,
JsonSerializerOptions options,
scoped ref ReadStack state,
[MaybeNullWhen(false)] out ReadOnlyMemory<T> value)
out ReadOnlyMemory<T> value)
{
if (reader.TokenType is JsonTokenType.Null)
{
Expand Down