From 1dd0ade3ab65e8ca45e14e6ac8005d2e140a5030 Mon Sep 17 00:00:00 2001 From: Brian Tiger Chow Date: Wed, 29 Oct 2014 01:34:17 -0700 Subject: [PATCH] fix(commands2/cat) rm extraneous print in output --- core/commands2/cat.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/commands2/cat.go b/core/commands2/cat.go index a81ff4eec..465de09db 100644 --- a/core/commands2/cat.go +++ b/core/commands2/cat.go @@ -1,7 +1,6 @@ package commands import ( - "fmt" "io" cmds "github.com/jbenet/go-ipfs/commands" @@ -12,7 +11,6 @@ var cat = &cmds.Command{ Help: "TODO", Run: func(req cmds.Request, res cmds.Response) { node := req.Context().Node - fmt.Println(node.Resolver) readers := make([]io.Reader, 0, len(req.Arguments())) for _, path := range req.Arguments() {