File tree Expand file tree Collapse file tree 1 file changed +1
-15
lines changed
src/PowerShellEditorServices/Services/DebugAdapter/Handlers Expand file tree Collapse file tree 1 file changed +1
-15
lines changed Original file line number Diff line number Diff line change 3
3
4
4
#nullable enable
5
5
6
- using System . Diagnostics ;
7
6
using System . Linq ;
8
7
using System . Threading ;
9
8
using System . Threading . Tasks ;
@@ -28,22 +27,9 @@ internal record ClientBreakpoint(
28
27
[ property: Optional ] ClientLocation ? Location = null ,
29
28
[ property: Optional ] string ? FunctionName = null )
30
29
{
31
- private string ? _id ;
32
-
33
30
// The ID needs to come from the client, so if the breakpoint is originating on the server
34
31
// then we need to create an ID-less breakpoint to send over to the client.
35
- public string Id
36
- {
37
- get
38
- {
39
- Debug . Assert (
40
- _id is not null ,
41
- "Caller should ensure ClientBreakpoint ID is retrieved by the client prior to calling this property." ) ;
42
-
43
- return _id ! ;
44
- }
45
- set => _id = value ;
46
- }
32
+ public string ? Id { get ; set ; }
47
33
}
48
34
49
35
internal record ClientBreakpointsChangedEvents (
You can’t perform that action at this time.
0 commit comments