mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 05:02:55 +08:00
Move null to finally
This commit is contained in:
parent
7809566f16
commit
bf6c6682bc
@ -132,11 +132,16 @@ namespace osu.Game.Database
|
||||
|
||||
Task.Factory.StartNew(() =>
|
||||
{
|
||||
realm.CreateBackup(Path.Combine(backup_folder, $"client.{backupSuffix}.realm"), realmBlockOperations);
|
||||
|
||||
// Above call will dispose of the blocking token when done.
|
||||
// Clean up here so we don't accidentally dispose twice.
|
||||
realmBlockOperations = null;
|
||||
try
|
||||
{
|
||||
realm.CreateBackup(Path.Combine(backup_folder, $"client.{backupSuffix}.realm"), realmBlockOperations);
|
||||
}
|
||||
finally
|
||||
{
|
||||
// Above call will dispose of the blocking token when done.
|
||||
// Clean up here so we don't accidentally dispose twice.
|
||||
realmBlockOperations = null;
|
||||
}
|
||||
|
||||
efContextFactory.CreateBackup(Path.Combine(backup_folder, $"client.{backupSuffix}.db"));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user