1
0
mirror of https://github.com/minio/minio.git synced 2025-04-22 19:35:47 -04:00

posix: cleanup usage of fmt.Println() ()

This commit is contained in:
Bala FA 2016-06-20 07:22:19 +05:30 committed by Harshavardhana
parent 50d25ca94a
commit 2f136e92f7

@ -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
}