1
0
mirror of https://github.com/ppy/osu.git synced 2024-05-15 02:00:22 +08:00

Remove un-need null check.

This commit is contained in:
為什麼 2022-07-09 21:12:35 +08:00
parent 8fcc33936c
commit 378be99fe1

View File

@ -133,9 +133,9 @@ namespace osu.Game.Benchmarks
[GlobalCleanup]
public void Cleanup()
{
realm?.Dispose();
storage?.Dispose();
updateThread?.Exit();
realm.Dispose();
storage.Dispose();
updateThread.Exit();
}
}
}