Skip to content

Commit dbbe070

Browse files
author
Oren Ferrari
committed
Reformat
1 parent f277b7c commit dbbe070

1 file changed

Lines changed: 14 additions & 14 deletions

File tree

Extensions.Retrieve.cs

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -185,21 +185,21 @@ static async Task<QueryResult<Queue<object[]>>> RetrieveAsyncInternal(DbDataRead
185185
var t = token ?? CancellationToken.None;
186186
var buffer = new Queue<object[]>();
187187

188-
if (!readStarted)
189-
readStarted = useReadAsync
190-
? await reader.ReadAsync(t)
191-
: (!t.IsCancellationRequested && reader.Read());
188+
if (!readStarted)
189+
readStarted = useReadAsync
190+
? await reader.ReadAsync(t)
191+
: (!t.IsCancellationRequested && reader.Read());
192192

193-
if (readStarted)
194-
{
195-
do
196-
{
197-
buffer.Enqueue(handler(reader));
198-
}
199-
while (useReadAsync
200-
? await reader.ReadAsync(t)
201-
: (!t.IsCancellationRequested && reader.Read()));
202-
}
193+
if (readStarted)
194+
{
195+
do
196+
{
197+
buffer.Enqueue(handler(reader));
198+
}
199+
while (useReadAsync
200+
? await reader.ReadAsync(t)
201+
: (!t.IsCancellationRequested && reader.Read()));
202+
}
203203

204204
if (!useReadAsync)
205205
t.ThrowIfCancellationRequested();

0 commit comments

Comments
 (0)