Skip to content

Commit 7946a3f

Browse files
author
shuxinqin
committed
Code fixes.
1 parent 6732189 commit 7946a3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Chloe/Query/Internals/DataReaderEnumerator.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ async BoolResultTask MoveNext(bool @async)
5555
this._reader = await this._dataReaderCreator(@async);
5656
}
5757

58-
bool readResult = @async ? await this._reader.Read(@async) : this._reader.Read();
58+
bool readResult = await this._reader.Read(@async);
5959
if (readResult)
6060
{
6161
this._current = this._reader;

0 commit comments

Comments
 (0)