@@ -24,20 +24,20 @@ public class BZip2InputStream : Stream
2424 #region Instance Fields
2525
2626 /*--
27- index of the last char in the block, so
28- the block size == last + 1.
29- --*/
27+ index of the last char in the block, so
28+ the block size == last + 1.
29+ --*/
3030 private int last ;
3131
3232 /*--
33- index in zptr[] of original string after sorting.
34- --*/
33+ index in zptr[] of original string after sorting.
34+ --*/
3535 private int origPtr ;
3636
3737 /*--
38- always: in the range 0 .. 9.
39- The current block size is 100000 * this number.
40- --*/
38+ always: in the range 0 .. 9.
39+ The current block size is 100000 * this number.
40+ --*/
4141 private int blockSize100k ;
4242
4343 private bool blockRandomised ;
@@ -59,9 +59,9 @@ The current block size is 100000 * this number.
5959 private byte [ ] ll8 ;
6060
6161 /*--
62- freq table collected to save a pass over the data
63- during decompression.
64- --*/
62+ freq table collected to save a pass over the data
63+ during decompression.
64+ --*/
6565 private readonly int [ ] unzftab = new int [ 256 ] ;
6666
6767 private readonly int [ ] [ ] limit = new int [ BZip2Constants . GroupCount ] [ ] ;
@@ -557,11 +557,11 @@ private void GetAndMoveToFrontDecode()
557557 int groupPos = 0 ;
558558
559559 /*--
560- Setting up the unzftab entries here is not strictly
561- necessary, but it does save having to do it later
562- in a separate pass, and so saves a block's worth of
563- cache misses.
564- --*/
560+ Setting up the unzftab entries here is not strictly
561+ necessary, but it does save having to do it later
562+ in a separate pass, and so saves a block's worth of
563+ cache misses.
564+ --*/
565565 for ( int i = 0 ; i <= 255 ; i ++ )
566566 {
567567 unzftab [ i ] = 0 ;
0 commit comments