Skip to content

Commit

Permalink
Fix stylecop erros
Browse files Browse the repository at this point in the history
  • Loading branch information
m-ringler committed Sep 18, 2024
1 parent e2c64dd commit 8682f53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions czishrink/netczicompress/Models/CompressionLevel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ namespace netczicompress.Models;
/// </summary>
public record CompressionLevel
{
private readonly int internalValue = DefaultValue;

public static readonly CompressionLevel Default;

private readonly int internalValue = DefaultValue;

static CompressionLevel()
{
Default = new CompressionLevel() { Value = DefaultValue };
Expand Down
4 changes: 2 additions & 2 deletions czishrink/netczicompress/Models/ThreadCount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ namespace netczicompress.Models;

public partial record ThreadCount
{
private readonly int internalValue = Maximum;

public static readonly ThreadCount Default;

private readonly int internalValue = Maximum;

static ThreadCount()
{
DefaultValue = Maximum;
Expand Down

0 comments on commit 8682f53

Please sign in to comment.