1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 23:12:56 +08:00

Remove extra braces

This commit is contained in:
Dan Balasescu 2018-01-11 17:02:09 +09:00 committed by GitHub
parent 4fa038aa27
commit 86581b6451
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,9 +74,7 @@ namespace osu.Game.Beatmaps.Formats
{ {
var storyboard = new Storyboard(); var storyboard = new Storyboard();
foreach (StreamReader stream in streams) foreach (StreamReader stream in streams)
{
ParseStoryboard(stream, storyboard); ParseStoryboard(stream, storyboard);
}
return storyboard; return storyboard;
} }