Remove un-need null check.

This commit is contained in:
為什麼 2022-07-09 21:12:35 +08:00
parent 8fcc33936c
commit 378be99fe1
1 changed files with 3 additions and 3 deletions

View File

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