From 978c353cf785669607fc48cc1d06fc392012e3ed Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 6 Mar 2015 06:09:42 +1100 Subject: [PATCH] Removed some TODOs that have been done. --- samples/memfs/fs.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/samples/memfs/fs.go b/samples/memfs/fs.go index 4a752a6..7f35c27 100644 --- a/samples/memfs/fs.go +++ b/samples/memfs/fs.go @@ -493,8 +493,6 @@ func (fs *memFS) ReadFile( defer inode.mu.RUnlock() // Serve the request. - // - // TODO(jacobsa): Add tests involving EOF matching posix_test.go. resp.Data = make([]byte, req.Size) n, err := inode.ReadAt(resp.Data, req.Offset) resp.Data = resp.Data[:n] @@ -515,8 +513,6 @@ func (fs *memFS) WriteFile( defer inode.mu.Unlock() // Serve the request. - // - // TODO(jacobsa): Add tests involving EOF matching posix_test.go. _, err = inode.WriteAt(req.Data, req.Offset) return