Fix extra whitespace.

This commit is contained in:
Jamie Wilkinson 2015-03-22 11:43:00 +11:00 committed by spf13
parent 33b62e7d34
commit e6e1bb0252
1 changed files with 0 additions and 1 deletions

View File

@ -113,7 +113,6 @@ func (f *InMemoryFile) Read(b []byte) (n int, err error) {
} else { } else {
n = len(f.data) - int(f.at) n = len(f.data) - int(f.at)
} }
copy(b, f.data[f.at:f.at+int64(n)]) copy(b, f.data[f.at:f.at+int64(n)])
atomic.AddInt64(&f.at, int64(n)) atomic.AddInt64(&f.at, int64(n))
return return