diff --git a/src/Microsoft.AspNet.Mvc.Core/ReflectedActionDescriptorProvider.cs b/src/Microsoft.AspNet.Mvc.Core/ReflectedActionDescriptorProvider.cs index 1ae6c5cd14..94252cb972 100644 --- a/src/Microsoft.AspNet.Mvc.Core/ReflectedActionDescriptorProvider.cs +++ b/src/Microsoft.AspNet.Mvc.Core/ReflectedActionDescriptorProvider.cs @@ -13,9 +13,9 @@ namespace Microsoft.AspNet.Mvc private readonly IParameterDescriptorFactory _parameterDescriptorFactory; public ReflectedActionDescriptorProvider(IControllerAssemblyProvider controllerAssemblyProvider, - IActionDiscoveryConventions conventions, - IControllerDescriptorFactory controllerDescriptorFactory, - IParameterDescriptorFactory parameterDescriptorFactory) + IActionDiscoveryConventions conventions, + IControllerDescriptorFactory controllerDescriptorFactory, + IParameterDescriptorFactory parameterDescriptorFactory) { _controllerAssemblyProvider = controllerAssemblyProvider; _conventions = conventions; diff --git a/src/Microsoft.AspNet.Mvc.Core/ReflectedActionInvoker.cs b/src/Microsoft.AspNet.Mvc.Core/ReflectedActionInvoker.cs index f74c7b76dc..11a1f0621b 100644 --- a/src/Microsoft.AspNet.Mvc.Core/ReflectedActionInvoker.cs +++ b/src/Microsoft.AspNet.Mvc.Core/ReflectedActionInvoker.cs @@ -15,10 +15,10 @@ namespace Microsoft.AspNet.Mvc private readonly IControllerFactory _controllerFactory; public ReflectedActionInvoker(ActionContext actionContext, - ReflectedActionDescriptor descriptor, - IActionResultFactory actionResultFactory, - IControllerFactory controllerFactory, - IServiceProvider serviceProvider) + ReflectedActionDescriptor descriptor, + IActionResultFactory actionResultFactory, + IControllerFactory controllerFactory, + IServiceProvider serviceProvider) { _actionContext = actionContext; _descriptor = descriptor;