Kaydet (Commit) e7118d20 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

HStream::closeInput does nothing

Change-Id: I0d57e227be45bb2c098969ab24eedab30514313f
üst 2617def8
......@@ -146,9 +146,7 @@ void HStreamIODev::close(void)
/* 플러시한 후 닫는다. */
this->flush();
if (_gzfp)
gz_close(_gzfp); /* gz_close() calls stream_closeInput() */
else
_stream->closeInput();
gz_close(_gzfp);
_gzfp = NULL;
}
......
......@@ -66,9 +66,4 @@ int HStream::available() const
return size - pos;
}
void HStream::closeInput()
{
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -46,10 +46,7 @@ class HStream
* @returns Size of remained stream
*/
int available() const;
/**
* remove the stream from this object.
*/
void closeInput();
private:
int size;
byte *seq;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment