mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 16:34:45 +00:00
Resharper code cleanup
This commit is contained in:
@@ -12,29 +12,16 @@ namespace SharpCompress.Compressor.PPMd.H
|
||||
|
||||
internal int Symbol
|
||||
{
|
||||
get
|
||||
{
|
||||
return symbol;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
this.symbol = value & 0xff;
|
||||
}
|
||||
get { return symbol; }
|
||||
|
||||
set { this.symbol = value & 0xff; }
|
||||
}
|
||||
|
||||
internal int Freq
|
||||
{
|
||||
get
|
||||
{
|
||||
return freq;
|
||||
}
|
||||
|
||||
set
|
||||
{
|
||||
this.freq = value & 0xff;
|
||||
}
|
||||
get { return freq; }
|
||||
|
||||
set { this.freq = value & 0xff; }
|
||||
}
|
||||
|
||||
internal State Values
|
||||
|
||||
Reference in New Issue
Block a user