We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea8b8cf commit bbcd4f5Copy full SHA for bbcd4f5
src/DotNext/Runtime/CompilerServices/SuspendedExceptionTaskAwaitable.cs
@@ -58,9 +58,7 @@ public SuspendedExceptionTaskAwaitable ConfigureAwait(bool continueOnCapturedCon
58
private readonly ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter awaiter;
59
60
internal Awaiter(in ValueTask task, bool continueOnCapturedContext)
61
- {
62
- awaiter = task.ConfigureAwait(continueOnCapturedContext).GetAwaiter();
63
- }
+ => awaiter = task.ConfigureAwait(continueOnCapturedContext).GetAwaiter();
64
65
internal Predicate<Exception>? Filter
66
{
0 commit comments