mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-24 02:28:01 +02:00
Removed unnecessary [Friend] attributes
This commit is contained in:
parent
99419097c5
commit
b89e036a6f
4 changed files with 5 additions and 5 deletions
|
@ -88,7 +88,7 @@ namespace System.Threading.Tasks
|
|||
protected TResult GetResultCore(bool waitCompletionNotification)
|
||||
{
|
||||
// If the result has not been calculated yet, wait for it.
|
||||
if (!IsCompleted) this.[Friend]InternalWait(Timeout.Infinite, default(CancellationToken)); // won't throw if task faulted or canceled; that's handled below
|
||||
if (!IsCompleted) InternalWait(Timeout.Infinite, default(CancellationToken)); // won't throw if task faulted or canceled; that's handled below
|
||||
|
||||
// Notify the debugger of the wait completion if it's requested such a notification
|
||||
//TODO: Implement
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue