We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c7de3d commit c54bab1Copy full SHA for c54bab1
src/BaGet.Protocol/Catalog/NullCursor.cs
@@ -13,7 +13,7 @@ public class NullCursor : ICursor
13
{
14
public Task<DateTimeOffset?> GetAsync(CancellationToken cancellationToken = default)
15
16
- return null;
+ return Task.FromResult<DateTimeOffset?>(null);
17
}
18
19
public Task SetAsync(DateTimeOffset value, CancellationToken cancellationToken = default)
0 commit comments