From 74e87c22b8b92b58ee4aa3df0fef80c8a494e4f2 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 24 Jul 2015 16:23:13 +1000 Subject: [PATCH] Killed some dead code. --- connection.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/connection.go b/connection.go index b136e06..1ed1797 100644 --- a/connection.go +++ b/connection.go @@ -410,12 +410,6 @@ func (c *Connection) ReadOp() (op fuseops.Op, err error) { } } -func (c *Connection) waitForReady() (err error) { - <-c.wrapped.Ready - err = c.wrapped.MountError - return -} - // Close the connection. Must not be called until operations that were read // from the connection have been responded to. func (c *Connection) close() (err error) {