Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
sergey-shandar committed Nov 23, 2017
1 parent 4e1df72 commit 710c963
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ static async Task GetStateAsync<TModel>(
// Get state of dependencies if the resource doesn't exist
if (info == null)
{
var tasks = config.GetResourceDependencies().Select(context.GetStateAsyncDispatch);
var tasks = config
.GetResourceDependencies()
.Select(context.GetStateAsyncDispatch);
await Task.WhenAll(tasks);
}
return info;
Expand Down

0 comments on commit 710c963

Please sign in to comment.