We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c154c5 commit 5746574Copy full SHA for 5746574
DevProxy.Plugins/Mocking/MockStdioResponsePlugin.cs
@@ -64,6 +64,15 @@ public class MockStdioResponsePlugin(
64
65
public override string Name => nameof(MockStdioResponsePlugin);
66
67
+ protected override void Dispose(bool disposing)
68
+ {
69
+ if (disposing)
70
71
+ _loader?.Dispose();
72
+ }
73
+ base.Dispose(disposing);
74
75
+
76
public override async Task InitializeAsync(InitArgs e, CancellationToken cancellationToken)
77
{
78
ArgumentNullException.ThrowIfNull(e);
0 commit comments