From 33d32cecd926e3533763e1e2d1444823baa50789 Mon Sep 17 00:00:00 2001 From: "N. Taylor Mullen" Date: Tue, 5 Jan 2016 12:05:41 -0800 Subject: [PATCH] Remove unused parameter from `TagHelperDesignTimeDescriptorFactory`. #629 --- .../TagHelpers/TagHelperDesignTimeDescriptorFactory.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.AspNet.Razor.Runtime/Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs b/src/Microsoft.AspNet.Razor.Runtime/Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs index 2912b79886..dfcd3fbff4 100644 --- a/src/Microsoft.AspNet.Razor.Runtime/Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs +++ b/src/Microsoft.AspNet.Razor.Runtime/Runtime/TagHelpers/TagHelperDesignTimeDescriptorFactory.cs @@ -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 {