Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Test ref] Wrap existing method in preprocessor directive
  • Loading branch information
carlossanlop committed Jan 21, 2020
commit 73221160de5d1bf71627f2ee6f8baecbf4231099
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ public enum CompressionMode
}
public partial class DeflateStream : System.IO.Stream
{
#if DEBUG
public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel) { }
#endif
public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionLevel compressionLevel, bool leaveOpen) { }
public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode) { }
public DeflateStream(System.IO.Stream stream, System.IO.Compression.CompressionMode mode, bool leaveOpen) { }
Expand Down