Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/Compress/ArjDecoder2.h')
-rw-r--r--[-rwxr-xr-x]CPP/7zip/Compress/ArjDecoder2.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/CPP/7zip/Compress/ArjDecoder2.h b/CPP/7zip/Compress/ArjDecoder2.h
index cf00975d..cf544d9e 100755..100644
--- a/CPP/7zip/Compress/ArjDecoder2.h
+++ b/CPP/7zip/Compress/ArjDecoder2.h
@@ -23,12 +23,6 @@ class CCoder :
CLzOutWindow m_OutWindowStream;
NBitm::CDecoder<CInBuffer> m_InBitStream;
- void ReleaseStreams()
- {
- m_OutWindowStream.ReleaseStream();
- m_InBitStream.ReleaseStream();
- }
-
class CCoderReleaser
{
CCoder *m_Coder;
@@ -39,7 +33,6 @@ class CCoder :
{
if (NeedFlush)
m_Coder->m_OutWindowStream.Flush();
- m_Coder->ReleaseStreams();
}
};
friend class CCoderReleaser;