Skip to content
Merged
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
6 changes: 1 addition & 5 deletions src/ICSharpCode.SharpZipLib/BZip2/BZip2Constants.cs
Original file line number Diff line number Diff line change
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()
{
}
}
}