aboutsummaryrefslogtreecommitdiff
path: root/src/shared/ByteBuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/ByteBuffer.h')
-rw-r--r--src/shared/ByteBuffer.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/shared/ByteBuffer.h b/src/shared/ByteBuffer.h
index b61cefb1a05..5f8a584eb0f 100644
--- a/src/shared/ByteBuffer.h
+++ b/src/shared/ByteBuffer.h
@@ -365,9 +365,6 @@ class ByteBuffer
uint32 j = 1, k = 1;
sLog.outDebug("STORAGE_SIZE: %u", size() );
- if(sLog.IsIncludeTime())
- sLog.outDebugInLine(" ");
-
for(uint32 i = 0; i < size(); i++)
{
if ((i == (j*8)) && ((i != (k*16))))
@@ -387,16 +384,12 @@ class ByteBuffer
if (read<uint8>(i) < 0x0F)
{
sLog.outDebugInLine("\n");
- if(sLog.IsIncludeTime())
- sLog.outDebugInLine(" ");
sLog.outDebugInLine("0%X ", read<uint8>(i) );
}
else
{
sLog.outDebugInLine("\n");
- if(sLog.IsIncludeTime())
- sLog.outDebugInLine(" ");
sLog.outDebugInLine("%X ", read<uint8>(i) );
}