From cd4e95d88c9dfc6d704fc53802bfc59f5aae883c Mon Sep 17 00:00:00 2001 From: brianc Date: Fri, 16 Sep 2011 00:13:22 -0500 Subject: [PATCH] remove unused code --- lib/connection.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/connection.js b/lib/connection.js index 811dc7b2..66dfa16d 100644 --- a/lib/connection.js +++ b/lib/connection.js @@ -86,11 +86,6 @@ p._send = function(code, more) { } } -var termBuffer = new Buffer([0x58, 0, 0, 0, 4]); -p.end = function() { - var wrote = this.stream.write(termBuffer); -}; - p.query = function(text) { //0x51 = Q this.stream.write(this.writer.addCString(text).flush(0x51));