1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00

Remove temporary logging

This commit is contained in:
Dean Herbert 2021-10-12 16:19:58 +09:00
parent e058214346
commit c66e50ac55

View File

@ -132,16 +132,8 @@ namespace osu.Game.Audio.Effects
{
base.Dispose(isDisposing);
try
{
if (mixer.Effects.Contains(filter))
detachFilter();
}
catch (Exception e)
{
Logger.Log($"Exception in audio filter disposal: {e}");
throw;
}
if (mixer.Effects.Contains(filter))
detachFilter();
}
}
}