mirror of
https://github.com/ppy/osu.git
synced 2025-03-14 05:47:20 +08: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…
x
Reference in New Issue
Block a user