mirror of https://github.com/ppy/osu
Remove extra braces
This commit is contained in:
parent
4fa038aa27
commit
86581b6451
|
@ -74,9 +74,7 @@ public virtual Storyboard DecodeStoryboard(params StreamReader[] streams)
|
||||||
{
|
{
|
||||||
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue