From 2f136e92f78afb45ba3ffacefd9492d787206c02 Mon Sep 17 00:00:00 2001 From: Bala FA Date: Mon, 20 Jun 2016 07:22:19 +0530 Subject: [PATCH] posix: cleanup usage of fmt.Println() (#1934) --- posix-list-dir-others.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/posix-list-dir-others.go b/posix-list-dir-others.go index e9abcc3db..66b6036ca 100644 --- a/posix-list-dir-others.go +++ b/posix-list-dir-others.go @@ -19,7 +19,6 @@ package main import ( - "fmt" "io" "os" "strings" @@ -31,7 +30,6 @@ func readDir(dirPath string) (entries []string, err error) { if err != nil { // File is really not found. if os.IsNotExist(err) { - fmt.Println(preparePath(dirPath), err) return nil, errFileNotFound }