-
Notifications
You must be signed in to change notification settings - Fork 762
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
React to corefx changes #326
Conversation
ffae512
to
cd04314
Compare
@@ -9,12 +9,12 @@ | |||
|
|||
namespace System.IO.Pipelines.Tests | |||
{ | |||
public class BufferWriterTes: IDisposable | |||
public class BufferWriterTes : IDisposable |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: BufferWriterTes
=> BufferWriterTests
if (currentCount <= 0) ThrowHelper.ThrowInvalidOperationException_ReferenceCountZero(); | ||
if (Interlocked.CompareExchange(ref _referenceCount, currentCount - 1, currentCount) == currentCount) | ||
{ | ||
// TODO: this needs to be changed to 1 when get Pipelines with pool fix. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we tracking this somewhere?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did change it to 1, just forgot to remove the comment.
cd04314
to
3457833
Compare
No description provided.