mirror of https://github.com/ppy/osu
Remove un-need null check.
This commit is contained in:
parent
8fcc33936c
commit
378be99fe1
|
@ -133,9 +133,9 @@ public void BenchmarkDetachedPropertyRead()
|
|||
[GlobalCleanup]
|
||||
public void Cleanup()
|
||||
{
|
||||
realm?.Dispose();
|
||||
storage?.Dispose();
|
||||
updateThread?.Exit();
|
||||
realm.Dispose();
|
||||
storage.Dispose();
|
||||
updateThread.Exit();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue