Skip to content

Commit 956571c

Browse files
committed
Fix overrides
1 parent 03981d3 commit 956571c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/PowerShellEditorServices.Test.E2E/Processes/StdioServerProcess.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,12 @@ protected override void Dispose(bool disposing)
8888
/// <summary>
8989
/// The server's input stream.
9090
/// </summary>
91-
public override Stream InputStream => _serverProcess?.StandardInput?.BaseStream;
91+
protected override Stream GetInputStream() => _serverProcess?.StandardInput?.BaseStream;
9292

9393
/// <summary>
9494
/// The server's output stream.
9595
/// </summary>
96-
public override Stream OutputStream => _serverProcess?.StandardOutput?.BaseStream;
96+
protected override Stream GetOutputStream() => _serverProcess?.StandardOutput?.BaseStream;
9797

9898
/// <summary>
9999
/// Start or connect to the server.

0 commit comments

Comments
 (0)