diff --git a/src/Microsoft.AspNet.Mvc.Core/ReflectedActionDescriptorProvider.cs b/src/Microsoft.AspNet.Mvc.Core/ReflectedActionDescriptorProvider.cs index 0120bad716..c8bf074a42 100644 --- a/src/Microsoft.AspNet.Mvc.Core/ReflectedActionDescriptorProvider.cs +++ b/src/Microsoft.AspNet.Mvc.Core/ReflectedActionDescriptorProvider.cs @@ -112,7 +112,6 @@ namespace Microsoft.AspNet.Mvc var attributes = methodInfo.GetCustomAttributes(inherit: true).ToArray(); - // TODO: add ordering support such that action filters are ahead of controller filters if they have the same order var filtersFromAction = attributes.OfType().Select(filter => new FilterDescriptor(filter, FilterOrigin.Action)); ad.FilterDescriptors = filtersFromAction.Concat(globalAndControllerFilters)