Remove ConnPool functions overlapped by Stat

scan-io
Jack Christensen 2014-07-12 20:12:56 -05:00
parent 4fbd76bee5
commit e33fb9d5d8
1 changed files with 0 additions and 8 deletions

View File

@ -143,14 +143,6 @@ func (p *ConnPool) Stat() (s ConnPoolStat) {
return
}
func (p *ConnPool) MaxConnectionCount() int {
return p.maxConnections
}
func (p *ConnPool) CurrentConnectionCount() int {
return p.maxConnections
}
func (p *ConnPool) createConnection() (c *Conn, err error) {
c, err = Connect(p.config)
if err != nil {