From 3acfffc1428313bfe9c6a41455bcfbe1a25f27c6 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 29 Jun 2013 13:24:28 -0500 Subject: [PATCH] Removed unused rxDataRowFirstValue --- connection.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/connection.go b/connection.go index 652e2c0a..2ff3cc57 100644 --- a/connection.go +++ b/connection.go @@ -370,17 +370,6 @@ func (c *Connection) rxDataRow(r *DataRowReader) (row map[string]interface{}) { return } -func (c *Connection) rxDataRowFirstValue(r *MessageReader) (s string, null bool) { - size := r.ReadInt32() - if size > -1 { - s = r.ReadByteString(size) - } else { - null = true - } - - return -} - func (c *Connection) rxCommandComplete(r *MessageReader) string { return r.ReadString() }