Skip to content

Commit

Permalink
Allow browsing ConfigureAwait from AsyncLazy. #174
Browse files Browse the repository at this point in the history
Remove EditorBrowsableState.Never from AsyncLazy.ConfigureAwait.
  • Loading branch information
sowings13 committed Jun 22, 2020
1 parent cdd8e73 commit 9c6e6cc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Nito.AsyncEx.Coordination/AsyncLazy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ public TaskAwaiter<T> GetAwaiter()
/// <summary>
/// Asynchronous infrastructure support. This method permits instances of <see cref="AsyncLazy&lt;T&gt;"/> to be await'ed.
/// </summary>
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]
public ConfiguredTaskAwaitable<T> ConfigureAwait(bool continueOnCapturedContext)
{
return Task.ConfigureAwait(continueOnCapturedContext);
Expand Down

0 comments on commit 9c6e6cc

Please sign in to comment.