From 9645d70df807d1063c66d64322e917c5e79b1ab1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Thu, 7 Apr 2016 02:39:19 +0200 Subject: [PATCH] Don't dump compact length values because they seem duplicate given that they're composed of integer(s). --- config-serializer/UhkBuffer.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/config-serializer/UhkBuffer.ts b/config-serializer/UhkBuffer.ts index 9b6722dd..d7e66db3 100644 --- a/config-serializer/UhkBuffer.ts +++ b/config-serializer/UhkBuffer.ts @@ -107,12 +107,10 @@ class UhkBuffer { if (length === UhkBuffer.longCompactLengthPrefix) { length += this.readUInt8() << 8; } - this.dump(`cl(${length})`); return length; } writeCompactLength(length: number) { - this.dump(`cl(${length})`); if (length >= UhkBuffer.longCompactLengthPrefix) { this.writeUInt8(UhkBuffer.longCompactLengthPrefix); this.writeUInt16(length);