mirror of
https://github.com/ppy/osu
synced 2025-02-09 14:47:33 +00:00
Remove unnecessary check
This commit is contained in:
parent
a5e1e8d043
commit
b7ca003928
@ -120,11 +120,8 @@ namespace osu.Game.Collections
|
||||
|
||||
return Task.Run(async () =>
|
||||
{
|
||||
if (stable.Exists(database_name))
|
||||
{
|
||||
using (var stream = stable.GetStream(database_name))
|
||||
await Import(stream);
|
||||
}
|
||||
using (var stream = stable.GetStream(database_name))
|
||||
await Import(stream);
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user