Merge pull request #31649 from exts/revert_notifyawaiter

reverted NotifyAwaiter<T> Reset() to support c#7.0
This commit is contained in:
Rémi Verschelde 2019-08-25 14:26:30 +02:00 committed by GitHub
commit 360d0bb6a3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -51,7 +51,7 @@ namespace GodotTools.Utils
{
continuation = null;
exception = null;
result = default;
result = default(T);
IsCompleted = false;
return this;
}