1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

Remove unnecessary check

This commit is contained in:
smoogipoo 2020-09-08 19:14:48 +09:00
parent a5e1e8d043
commit b7ca003928

View File

@ -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);
});
}