Remove stray Printf from internal/fs

This commit is contained in:
greatroar 2020-09-17 10:11:31 +02:00
parent 59b343a9bf
commit 95ebba85ff
1 changed files with 0 additions and 2 deletions

View File

@ -1,7 +1,6 @@
package fs
import (
"fmt"
"io"
"os"
"path"
@ -208,7 +207,6 @@ func (r *readerFile) Read(p []byte) (int, error) {
// return an error if we did not read any data
if err == io.EOF && !r.AllowEmptyFile && !r.bytesRead {
fmt.Printf("reader: %d bytes read, err %v, bytesRead %v, allowEmpty %v\n", n, err, r.bytesRead, r.AllowEmptyFile)
return n, &os.PathError{
Path: r.fakeFile.name,
Op: "read",