remove debug in serializer transform

This commit is contained in:
roblabla 2015-05-22 21:32:10 +00:00
parent 2862ea2034
commit f5192ba8b7

View File

@ -34,11 +34,9 @@ class Deserializer extends Transform {
super({ readableObjectMode: true });
this.protocolState = state;
this.isServer = isServer;
this.calls = 0;
}
_transform(chunk, enc, cb) {
this.calls++;
var packet;
try {
packet = protocol.parsePacketData(chunk, this.protocolState, this.isServer, this.packetsToParse);