U4-2596: UmbracoControllerFactory method ReleaseController should be virtual

This commit is contained in:
Floris Robbemont
2013-08-07 15:06:41 +02:00
parent a099af39c2
commit dc2de4b5e7

View File

@@ -54,7 +54,7 @@ namespace Umbraco.Web.Mvc
/// Releases the specified controller.
/// </summary>
/// <param name="controller">The controller.</param>
public void ReleaseController(IController controller)
public virtual void ReleaseController(IController controller)
{
_innerFactory.ReleaseController(controller);
}