Skip to content

Commit d808201

Browse files
committed
Fix use of ContinueHandlerBase (has Base suffix now)
1 parent 65e232f commit d808201

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/PowerShellEditorServices/Services/DebugAdapter/Handlers/DebuggerActionHandlers.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313

1414
namespace Microsoft.PowerShell.EditorServices.Handlers
1515
{
16+
// TODO: Inherit from ABCs instead of satisfying interfaces.
1617
internal class DebuggerActionHandlers : IContinueHandler, INextHandler, IPauseHandler, IStepInHandler, IStepOutHandler
1718
{
1819
private readonly ILogger _logger;
@@ -22,7 +23,7 @@ public DebuggerActionHandlers(
2223
ILoggerFactory loggerFactory,
2324
DebugService debugService)
2425
{
25-
_logger = loggerFactory.CreateLogger<ContinueHandler>();
26+
_logger = loggerFactory.CreateLogger<ContinueHandlerBase>();
2627
_debugService = debugService;
2728
}
2829

0 commit comments

Comments
 (0)