Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 55fd868

Browse files
committedMay 19, 2023
Fixed null tolerance
1 parent ace9112 commit 55fd868

File tree

1 file changed

+1
-1
lines changed
  • src/Elastic.Clients.Elasticsearch/Core/Infer/Id

1 file changed

+1
-1
lines changed
 

‎src/Elastic.Clients.Elasticsearch/Core/Infer/Id/Ids.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public partial class Ids : IUrlParameter, IEquatable<Ids>
2121

2222
public Ids(IList<Id> ids) => _ids = ids;
2323

24-
public Ids(IEnumerable<string> ids) => _ids = ids?.Select(i => new Id(i)).ToList();
24+
public Ids(IEnumerable<string> ids) => _ids = ids.Select(i => new Id(i)).ToList();
2525

2626
public Ids(string value)
2727
{

0 commit comments

Comments
 (0)
Please sign in to comment.