Skip to content

Commit f1a0f7f

Browse files
committed
Fix CS8602 warning
1 parent ca1a3a8 commit f1a0f7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NetMQ/Core/Patterns/Scatter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public Scatter(Ctx parent, int threadId, int socketId)
2727
/// <param name="icanhasall">not used</param>
2828
protected override void XAttachPipe(Pipe pipe, bool icanhasall)
2929
{
30-
Debug.Assert(pipe != null);
30+
Assumes.NotNull(pipe);
3131

3232
// Don't delay pipe termination as there is no one
3333
// to receive the delimiter.

0 commit comments

Comments
 (0)