Skip to content

Commit

Permalink
PR #625: Make BZip2Constants static instead of sealed
Browse files Browse the repository at this point in the history
  • Loading branch information
Numpsy committed May 11, 2021
1 parent 51343ec commit e839500
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/ICSharpCode.SharpZipLib/BZip2/BZip2Constants.cs
Expand Up @@ -3,7 +3,7 @@ namespace ICSharpCode.SharpZipLib.BZip2
/// <summary>
/// Defines internal values for both compression and decompression
/// </summary>
internal sealed class BZip2Constants
internal static class BZip2Constants
{
/// <summary>
/// Random numbers used to randomise repetitive blocks
Expand Down Expand Up @@ -113,9 +113,5 @@ internal sealed class BZip2Constants
/// Backend constant
/// </summary>
public const int OvershootBytes = 20;

private BZip2Constants()
{
}
}
}

0 comments on commit e839500

Please sign in to comment.