Skip to content

Commit bf31345

Browse files
authored
Fix indentation in NamedPipeServer.cs (#49755)
1 parent 00c5d9f commit bf31345

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Cli/dotnet/Commands/Test/IPC/NamedPipeServer.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ public NamedPipeServer(
5353
}
5454

5555
public NamedPipeServer(
56-
PipeNameDescription pipeNameDescription,
57-
Func<IRequest, Task<IResponse>> callback,
58-
int maxNumberOfServerInstances,
59-
CancellationToken cancellationToken,
60-
bool skipUnknownMessages)
56+
PipeNameDescription pipeNameDescription,
57+
Func<IRequest, Task<IResponse>> callback,
58+
int maxNumberOfServerInstances,
59+
CancellationToken cancellationToken,
60+
bool skipUnknownMessages)
6161
{
6262
_namedPipeServerStream = new((PipeName = pipeNameDescription).Name, PipeDirection.InOut, maxNumberOfServerInstances, PipeTransmissionMode.Byte, PipeOptions.Asynchronous);
6363
_callback = callback;

0 commit comments

Comments
 (0)