remove unused variable

This commit is contained in:
Andrew Kelley 2013-01-03 21:15:48 -05:00
parent cc3480ee91
commit f70110a646

View File

@ -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() {