1
0

1.8: Simplified item metadata reading.

This commit is contained in:
Howaner
2014-09-18 16:04:03 +02:00
parent 3ee211bbba
commit be6d4a5912
3 changed files with 3 additions and 27 deletions

View File

@@ -822,23 +822,6 @@ bool cByteBuffer::SkipRead(size_t a_Count)
bool cByteBuffer::ReverseRead(size_t a_Count)
{
CHECK_THREAD;
CheckValid();
if (m_ReadPos < a_Count)
{
return false;
}
m_ReadPos -= a_Count;
return true;
}
void cByteBuffer::ReadAll(AString & a_Data)
{
CHECK_THREAD;