[Unwrap()] fix: remove type parameter

master
hikari 2020-09-09 14:05:37 +09:00 committed by GitHub
parent 79cd2c17ba
commit 87dd5f13fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -732,7 +732,7 @@ namespace Cysharp.Threading.Tasks
return await await task;
}
public static async UniTask Unwrap<T>(this UniTask<UniTask> task)
public static async UniTask Unwrap(this UniTask<UniTask> task)
{
await await task;
}
@ -742,7 +742,7 @@ namespace Cysharp.Threading.Tasks
return await await task;
}
public static async UniTask Unwrap<T>(this Task<UniTask> task)
public static async UniTask Unwrap(this Task<UniTask> task)
{
await await task;
}
@ -752,7 +752,7 @@ namespace Cysharp.Threading.Tasks
return await await task;
}
public static async UniTask Unwrap<T>(this UniTask<Task> task)
public static async UniTask Unwrap(this UniTask<Task> task)
{
await await task;
}