Skip to content
This repository was archived by the owner on Sep 22, 2021. It is now read-only.

Commit ef26cda

Browse files
committed
Remove useless debug output during testing
1 parent 7782689 commit ef26cda

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Testing/TestBitstreams.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,21 +301,18 @@ public void TestChunkNestingRandom()
301301
switch (rng.Next(2 + ((remainingStack.Count > 0) ? 1 : 0))) {
302302
case 0: // begin new chunk
303303
int chunksize = Math.Min(rng.Next(5000 * 8), remaining);
304-
Console.WriteLine("BeginChunk({0})", chunksize);
305304
dbgAll.BeginChunk(chunksize);
306305
remainingStack.Push(remaining - chunksize);
307306
remaining = chunksize;
308307
break;
309308
case 1: // read stuff
310309
int blocksize = Math.Min(rng.Next(5000 * 8), remaining);
311-
Console.WriteLine("ReadBits({0})", blocksize);
312310
dbgAll.ReadBits(blocksize);
313311
remaining -= blocksize;
314312
break;
315313
case 2: // end current chunk
316314
dbgAll.EndChunk();
317315
remaining = remainingStack.Pop();
318-
Console.WriteLine("EndChunk(); remaining={0}", remaining);
319316
break;
320317
default:
321318
throw new NotImplementedException();

0 commit comments

Comments
 (0)