Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
address codefactor issue
  • Loading branch information
SteveL-MSFT committed Aug 3, 2018
commit b18cf93680a622dc2d7d2e4e35f6ef9b7fe200f1
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ private string ResolveAssemblyName(string assembly, bool isForReferenceAssembly)
{
errorRecord = new ErrorRecord(
new Exception(
String.Format(ParserStrings.ErrorLoadingAssembly, assembly)),
string.Format(ParserStrings.ErrorLoadingAssembly, assembly)),
"ErrorLoadingAssembly",
ErrorCategory.InvalidOperation,
assembly);
Expand Down Expand Up @@ -787,7 +787,7 @@ private string ResolveAssemblyName(string assembly, bool isForReferenceAssembly)

errorRecord = new ErrorRecord(
new Exception(
String.Format(ParserStrings.ErrorLoadingAssembly, assembly)),
string.Format(ParserStrings.ErrorLoadingAssembly, assembly)),
"ErrorLoadingAssembly",
ErrorCategory.InvalidOperation,
assembly);
Expand Down