From 17dbb640a6a8fa1728360809466e4265a86814de Mon Sep 17 00:00:00 2001 From: Matti Virolainen Date: Sat, 19 Apr 2014 11:54:12 +0300 Subject: [PATCH] Remove unused parameter 'name' from DataRowMessage. --- lib/connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/connection.js b/lib/connection.js index 7e59dae8..9f462c5e 100644 --- a/lib/connection.js +++ b/lib/connection.js @@ -478,7 +478,7 @@ Connection.prototype.parseField = function(buffer) { }; var DATA_ROW = 'dataRow'; -var DataRowMessage = function(name, length, fieldCount) { +var DataRowMessage = function(length, fieldCount) { this.name = DATA_ROW; this.length = length; this.fieldCount = fieldCount;