mirror of https://github.com/minio/minio.git
Merge pull request #45 from fkautz/pr_out_simplifying_code
This commit is contained in:
commit
fd52a211f4
|
@ -60,11 +60,7 @@ func main() {
|
|||
// get chunks
|
||||
chunks := make([][]byte, k+m)
|
||||
for i := 0; i < k+m; i++ {
|
||||
var err error
|
||||
chunks[i], err = ioutil.ReadFile(inputFilePath + "." + strconv.Itoa(i))
|
||||
if err != nil {
|
||||
continue
|
||||
}
|
||||
chunks[i], _ = ioutil.ReadFile(inputFilePath + "." + strconv.Itoa(i))
|
||||
}
|
||||
|
||||
// get length
|
||||
|
|
Loading…
Reference in New Issue