From 7775584ecaf725a8075a431cff995fcaaf034a65 Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 24 Jul 2015 16:23:37 +1000 Subject: [PATCH] Killed an unnecessary field. --- connection.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/connection.go b/connection.go index 1ed1797..cd659c7 100644 --- a/connection.go +++ b/connection.go @@ -55,7 +55,6 @@ const maxReadahead = 1 << 20 type Connection struct { debugLogger *log.Logger errorLogger *log.Logger - wrapped *fuseshim.Conn // The device through which we're talking to the kernel, and the protocol // version that we're using to talk to it. @@ -101,7 +100,6 @@ func newConnection( c = &Connection{ debugLogger: debugLogger, errorLogger: errorLogger, - wrapped: wrapped, dev: wrapped.Dev, protocol: wrapped.Protocol(), parentCtx: parentCtx,