Skip to content

Commit

Permalink
Code formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmg committed Jun 30, 2016
1 parent 5fb32b5 commit 7977529
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Autofac/Core/Registration/ServiceRegistrationInfo.cs
Expand Up @@ -87,7 +87,10 @@ public IEnumerable<IComponentRegistration> Implementations
get
{
RequiresInitialization();
return Enumerable.Reverse(_defaultImplementations).Concat(_sourceImplementations).Concat(_preserveDefaultImplementations);
return Enumerable
.Reverse(_defaultImplementations)
.Concat(_sourceImplementations)
.Concat(_preserveDefaultImplementations);
}
}

Expand Down

0 comments on commit 7977529

Please sign in to comment.