Skip to content

Commit 837b91b

Browse files
committed
C#: Make TrapCompression setter private.
1 parent 68b8590 commit 837b91b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csharp/extractor/Semmle.Extraction/Options.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public abstract class CommonOptions : ICommandLineOptions
5454
/// <summary>
5555
/// The compression algorithm used for trap files.
5656
/// </summary>
57-
public TrapWriter.CompressionMode TrapCompression { get; set; } = TrapWriter.CompressionMode.Brotli;
57+
public TrapWriter.CompressionMode TrapCompression { get; private set; } = TrapWriter.CompressionMode.Brotli;
5858

5959
public virtual bool HandleOption(string key, string value)
6060
{

0 commit comments

Comments
 (0)