Skip to content

Commit

Permalink
suppress warning CA1051
Browse files Browse the repository at this point in the history
  • Loading branch information
smdn committed Feb 3, 2022
1 parent bdc9650 commit 5a24097
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ public sealed class ChunkedMemoryStream : Stream {
public abstract class Chunk : IDisposable {
public abstract void Dispose();

#pragma warning disable SA1401
#pragma warning disable SA1401, CA1051
public byte[] Data;
internal Chunk Next = null;
#pragma warning restore SA1401
#pragma warning restore SA1401, CA1051
}

private class DefaultChunk : Chunk {
Expand Down

0 comments on commit 5a24097

Please sign in to comment.