make readonly
This commit is contained in:
@@ -15,7 +15,7 @@ namespace SharpIDE.Application.Features.Debugging;
|
|||||||
#pragma warning disable VSTHRD101
|
#pragma warning disable VSTHRD101
|
||||||
public class DebuggingService
|
public class DebuggingService
|
||||||
{
|
{
|
||||||
private ConcurrentDictionary<DebuggerSessionId, DebugProtocolHost> _debugProtocolHosts = [];
|
private readonly ConcurrentDictionary<DebuggerSessionId, DebugProtocolHost> _debugProtocolHosts = [];
|
||||||
|
|
||||||
/// <returns>The debugging session ID</returns>
|
/// <returns>The debugging session ID</returns>
|
||||||
public async Task<DebuggerSessionId> Attach(int debuggeeProcessId, DebuggerExecutableInfo? debuggerExecutableInfo, Dictionary<SharpIdeFile, List<Breakpoint>> breakpointsByFile, SharpIdeProjectModel project, CancellationToken cancellationToken = default)
|
public async Task<DebuggerSessionId> Attach(int debuggeeProcessId, DebuggerExecutableInfo? debuggerExecutableInfo, Dictionary<SharpIdeFile, List<Breakpoint>> breakpointsByFile, SharpIdeProjectModel project, CancellationToken cancellationToken = default)
|
||||||
|
|||||||
Reference in New Issue
Block a user