Remove unused parameter from `TagHelperDesignTimeDescriptorFactory`.
#629
This commit is contained in:
parent
fe5e1b8c71
commit
33d32cecd9
|
|
@ -118,7 +118,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
var xmlDocumentationFile = GetXmlDocumentationFile(assembly, assemblyLocation);
|
var xmlDocumentationFile = GetXmlDocumentationFile(assemblyLocation);
|
||||||
|
|
||||||
// Only want to process the file if it exists.
|
// Only want to process the file if it exists.
|
||||||
if (xmlDocumentationFile != null)
|
if (xmlDocumentationFile != null)
|
||||||
|
|
@ -154,7 +154,7 @@ namespace Microsoft.AspNet.Razor.Runtime.TagHelpers
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static FileInfo GetXmlDocumentationFile(Assembly assembly, string assemblyLocation)
|
private static FileInfo GetXmlDocumentationFile(string assemblyLocation)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue