Skip to content

Commit 1a248a4

Browse files
committed
Remove Debug Pragma
1 parent 2f067f1 commit 1a248a4

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

test/PowerShellEditorServices.Test.E2E/Hosts/DebugOutputStream.cs

-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ internal class DebugOutputStream : MonitoringStream
1818
public DebugOutputStream(Stream? underlyingStream)
1919
: base(underlyingStream ?? new MemoryStream())
2020
{
21-
22-
#if DEBUG
2321
DidRead += (_, segment) =>
2422
{
2523
if (segment.Array is null) { return; }
@@ -43,5 +41,4 @@ private static void LogData(string header, byte[] buffer, int offset, int count)
4341
Debug.WriteLine($"{header} {data}");
4442
}
4543
}
46-
#endif
4744
}

0 commit comments

Comments
 (0)