UniTask icon indicating copy to clipboard operation
UniTask copied to clipboard

fix: prevent NullReferenceException in TimeoutController

Open shiena opened this issue 3 years ago • 0 comments

Prevents NullReferenceException thrown when Dispose is called without calling Timeout in TimeoutController.

code to reproduce

void Start()
{
    var tc = new TimeoutController();
    tc.Dispose();
}

shiena avatar Sep 08 '22 06:09 shiena