Skip to content

Commit 7b47eae

Browse files
committed
token and outputpipe can be private.
1 parent 30370c6 commit 7b47eae

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PSParallelPipeline/PSOutputStreams.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ namespace PSParallelPipeline;
77

88
internal sealed class PSOutputStreams : IDisposable
99
{
10-
internal BlockingCollection<PSOutputData> OutputPipe { get => _worker.OutputPipe; }
10+
private BlockingCollection<PSOutputData> OutputPipe { get => _worker.OutputPipe; }
1111

12-
internal CancellationToken Token { get => _worker.Token; }
12+
private CancellationToken Token { get => _worker.Token; }
1313

1414
internal PSDataCollection<PSObject> Success { get; } = [];
1515

0 commit comments

Comments
 (0)