We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7263e4 commit 9d0b2f2Copy full SHA for 9d0b2f2
src/PowerShellEditorServices.Protocol/Server/DebugAdapter.cs
@@ -227,7 +227,7 @@ protected async Task HandleSetBreakpointsRequest(
227
LogLevel.Warning,
228
$"Attempted to set breakpoints on a non-existing file: {setBreakpointsParams.Source.Path}");
229
230
- string message = this.noDebug ? null : "Source does not exist, breakpoint not set.";
+ string message = this.noDebug ? string.Empty : "Source does not exist, breakpoint not set.";
231
232
var srcBreakpoints = setBreakpointsParams.Breakpoints
233
.Select(srcBkpt => Protocol.DebugAdapter.Breakpoint.Create(
0 commit comments