Skip to content

Commit

Permalink
fix: minor code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rishtigupta committed Jun 6, 2023
1 parent 21138ef commit b54466b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Momento.Sdk/Responses/CacheListFetchResponse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public Hit(_ListFetchResponse response)
return new List<string>(values.Select(v => v.ToStringUtf8()));
});

ListLength = checked((int)values.Count);
ListLength = values.Count;
}

/// <summary>
Expand Down

0 comments on commit b54466b

Please sign in to comment.