Remove unused/non exiting service from RazorViewEnginer

Rename PathBaseViewFactory.cs to match the class name VirtualPathViewFactory
This commit is contained in:
Yishai Galatzer 2014-03-10 23:32:55 -07:00
parent e991e86863
commit ed4d29042a
2 changed files with 1 additions and 4 deletions

View File

@ -13,13 +13,10 @@ namespace Microsoft.AspNet.Mvc.Razor
"/Views/Shared/{0}.cshtml",
};
private readonly IActionDescriptorProvider _actionDescriptorProvider;
private readonly IVirtualPathViewFactory _virtualPathFactory;
public RazorViewEngine(IActionDescriptorProvider actionDescriptorProvider,
IVirtualPathViewFactory virtualPathFactory)
public RazorViewEngine(IVirtualPathViewFactory virtualPathFactory)
{
_actionDescriptorProvider = actionDescriptorProvider;
_virtualPathFactory = virtualPathFactory;
}