1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 17:13:06 +08:00

Update IPC usage to return null

This commit is contained in:
Dean Herbert 2021-12-03 14:30:15 +09:00
parent 6142566974
commit 9803e63e6f

View File

@ -25,6 +25,8 @@ namespace osu.Game.IPC
{ {
if (t.Exception != null) throw t.Exception; if (t.Exception != null) throw t.Exception;
}, TaskContinuationOptions.OnlyOnFaulted); }, TaskContinuationOptions.OnlyOnFaulted);
return null;
}; };
} }