We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6732189 commit 7946a3fCopy full SHA for 7946a3f
src/Chloe/Query/Internals/DataReaderEnumerator.cs
@@ -55,7 +55,7 @@ async BoolResultTask MoveNext(bool @async)
55
this._reader = await this._dataReaderCreator(@async);
56
}
57
58
- bool readResult = @async ? await this._reader.Read(@async) : this._reader.Read();
+ bool readResult = await this._reader.Read(@async);
59
if (readResult)
60
{
61
this._current = this._reader;
0 commit comments