mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 16:27:26 +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 () =>
|
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