Remove comments

master
RamType0 2020-09-02 13:19:11 +09:00
parent 725b2fdc35
commit 227f7872cb
1 changed files with 1 additions and 2 deletions

View File

@ -164,9 +164,8 @@ namespace Cysharp.Threading.Tasks
}
else if (current is CustomYieldInstruction cyi)
{
//https://github.com/Unity-Technologies/UnityCsReference/blob/master/Runtime/Export/Scripting/CustomYieldInstruction.cs
// WWW, WaitForSecondsRealtime
while (cyi.keepWaiting)//Use keepWaiting instead of MoveNext to avoid virtual call
while (cyi.keepWaiting)
{
yield return null;
}