Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
removing comments from two more places as directed
  • Loading branch information
JimDaly committed May 10, 2022
commit 7bf28bd247b3285eefe4061101faefa3477ac332
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,6 @@ private static Action OutputWaitEtwEvents(Task task, Action continuation)
}

/// <summary>Provides an awaiter for awaiting a <see cref="System.Threading.Tasks.Task{TResult}"/>.</summary>
/// <remarks>This type is intended for compiler use only.</remarks>
public readonly struct TaskAwaiter<TResult> : ICriticalNotifyCompletion, ITaskAwaiter
{
// WARNING: Unsafe.As is used to access TaskAwaiter<> as the non-generic TaskAwaiter.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,6 @@ internal override void InnerInvoke()

/// <summary>Gets an awaiter used to await this <see cref="System.Threading.Tasks.Task{TResult}"/>.</summary>
/// <returns>An awaiter instance.</returns>
/// <remarks>This method is intended for compiler use rather than use directly in code.</remarks>
public new TaskAwaiter<TResult> GetAwaiter()
{
return new TaskAwaiter<TResult>(this);
Expand Down