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
1 changed files with 0 additions and 2 deletions

View File

@ -74,9 +74,7 @@ public virtual Storyboard DecodeStoryboard(params StreamReader[] streams)
{
var storyboard = new Storyboard();
foreach (StreamReader stream in streams)
{
ParseStoryboard(stream, storyboard);
}
return storyboard;
}