Remove unused parameter from `TagHelperDesignTimeDescriptorFactory`.

#629
This commit is contained in:
N. Taylor Mullen 2016-01-05 12:05:41 -08:00
parent fe5e1b8c71
commit 33d32cecd9
1 changed files with 2 additions and 2 deletions

View File

@ -118,7 +118,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers
return null;
}
var xmlDocumentationFile = GetXmlDocumentationFile(assembly, assemblyLocation);
var xmlDocumentationFile = GetXmlDocumentationFile(assemblyLocation);
// Only want to process the file if it exists.
if (xmlDocumentationFile != null)
@ -154,7 +154,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers
return null;
}
private static FileInfo GetXmlDocumentationFile(Assembly assembly, string assemblyLocation)
private static FileInfo GetXmlDocumentationFile(string assemblyLocation)
{
try
{