mirror of
https://github.com/osukey/osukey.git
synced 2025-07-02 16:59:53 +09:00
Remove unnecessary check
This commit is contained in:
@ -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);
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user