Skip to content

Commit 7b2ba86

Browse files
codacy2
1 parent 70f1dfe commit 7b2ba86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PowerShellEditorServices/Services/DebugAdapter/BreakpointService.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ private ScriptBlock GetBreakpointActionScriptBlock(
331331
}
332332
}
333333

334-
private bool ValidateBreakpointConditionAst(Ast conditionAst, out string message)
334+
private static bool ValidateBreakpointConditionAst(Ast conditionAst, out string message)
335335
{
336336
message = string.Empty;
337337

@@ -363,7 +363,7 @@ private bool ValidateBreakpointConditionAst(Ast conditionAst, out string message
363363
return true;
364364
}
365365

366-
private string ExtractAndScrubParseExceptionMessage(ParseException parseException, string condition)
366+
private static string ExtractAndScrubParseExceptionMessage(ParseException parseException, string condition)
367367
{
368368
string[] messageLines = parseException.Message.Split('\n');
369369

0 commit comments

Comments
 (0)