Skip to content

Commit efdd6fd

Browse files
author
Oren (electricessence)
committed
Cleanup.
1 parent 3b2581e commit efdd6fd

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Open.ChannelExtensions/Extensions.Join.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22
using System.Collections.Generic;
3-
using System.Threading;
43
using System.Threading.Channels;
54
using System.Threading.Tasks;
65

Open.ChannelExtensions/TransformChannel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class TransformChannel<T, TResult> : TransformChannel<T, T, TResult>
4141
/// <param name="source">The channel containing the source data.</param>
4242
/// <param name="transform">The transform function to be applied to the results when being read.</param>
4343
public TransformChannel(Channel<T, T> source, Func<T, TResult> transform)
44-
:base(source, transform)
44+
: base(source, transform)
4545
{
4646
}
4747
}

0 commit comments

Comments
 (0)