You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -24,6 +25,7 @@ public class BitReader : IDisposable
24
25
privateBitReader(byte[]readFrom)
25
26
{
26
27
this.readFrom=readFrom;
28
+
disposed=false;
27
29
}
28
30
29
31
publicstaticBitReaderGet(byte[]readFrom)
@@ -33,12 +35,14 @@ public static BitReader Get(byte[] readFrom)
33
35
if(pools>10)
34
36
if(LogHelper.CurrentLogLevel<=LogLevel.Normal)LogHelper.LogWarning("There are more than 10 BitReaders. Have you forgotten do dispose? (More readers hurt performance)");
0 commit comments