Skip to content

Commit 55fd868

Browse files
committed
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

+1-1
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)