Skip to content
This repository has been archived by the owner on Jan 15, 2021. It is now read-only.

Commit

Permalink
Cleaned up a few StyleCop rules
Browse files Browse the repository at this point in the history
  • Loading branch information
nikmd23 committed Apr 2, 2013
1 parent 5853c93 commit 15cb40b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,4 @@ public void Execute()
}
}
}

}
2 changes: 1 addition & 1 deletion source/Glimpse.Core/System.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public static class Settings
{
/// <summary>
/// Hook that is used to hang initialization code from. No method
/// here is required ot be called. You should only need to use this
/// here is required to be called. You should only need to use this
/// code if Glimpse doesn't initialize soon enough in the application
/// life cycle for your purposes.
/// </summary>
Expand Down
1 change: 1 addition & 0 deletions source/Glimpse.Mvc/AlternateType/AsyncActionInvoker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public override IEnumerable<IAlternateMethod> AllMethods
new EndInvokeActionMethod(),
new ActionInvoker.InvokeActionResult<ControllerActionInvoker>(),
new ActionInvoker.GetFilters<ControllerActionInvoker>(new ActionFilter(ProxyFactory), new ResultFilter(ProxyFactory), new AuthorizationFilter(ProxyFactory), new ExceptionFilter(ProxyFactory)),

// HACK - Leveraging InvokerActionResult and GetFilters for Async & NonAsync allows for MVC 3 + MVC 4
new ActionInvoker.InvokeActionResult<AsyncControllerActionInvoker>(),
new ActionInvoker.GetFilters<AsyncControllerActionInvoker>(new ActionFilter(ProxyFactory), new ResultFilter(ProxyFactory), new AuthorizationFilter(ProxyFactory), new ExceptionFilter(ProxyFactory))
Expand Down

0 comments on commit 15cb40b

Please sign in to comment.