Rename method to avoid weird code analysis rule

This commit is contained in:
Dean Herbert
2020-12-23 17:14:58 +09:00
parent 7cc38f03d1
commit 0ddcab574f
6 changed files with 8 additions and 8 deletions

View File

@ -14,7 +14,7 @@ namespace osu.Game.Extensions
/// </summary>
/// <param name="task">The task.</param>
/// <param name="logOnError">Whether errors should be logged as important, or silently ignored.</param>
public static void FireAndForget(this Task task, bool logOnError = false)
public static void CatchUnobservedExceptions(this Task task, bool logOnError = false)
{
task.ContinueWith(t =>
{