From f70110a646a441f5e148a1b1fefae41c11e505e0 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Thu, 3 Jan 2013 21:15:48 -0500 Subject: [PATCH] remove unused variable --- index.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/index.js b/index.js index f0b93c1..c1afa4d 100644 --- a/index.js +++ b/index.js @@ -23,12 +23,6 @@ function createClient(options) { assert.ok(options.username, "username is required"); var haveCredentials = options.email && options.password; - var packetHandlers = { - 0x00: onKeepAlive, - 0xFC: onEncryptionKeyResponse, - 0xFD: onEncryptionKeyRequest, - }; - var client = new Client(); client.username = options.username; client.on('connect', function() {