mirror of
https://github.com/minio/minio.git
synced 2024-12-24 22:25:54 -05:00
Simplifying code
This commit is contained in:
parent
12aae70620
commit
becb165770
@ -60,11 +60,7 @@ func main() {
|
|||||||
// get chunks
|
// get chunks
|
||||||
chunks := make([][]byte, k+m)
|
chunks := make([][]byte, k+m)
|
||||||
for i := 0; i < k+m; i++ {
|
for i := 0; i < k+m; i++ {
|
||||||
var err error
|
chunks[i], _ = ioutil.ReadFile(inputFilePath + "." + strconv.Itoa(i))
|
||||||
chunks[i], err = ioutil.ReadFile(inputFilePath + "." + strconv.Itoa(i))
|
|
||||||
if err != nil {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// get length
|
// get length
|
||||||
|
Loading…
Reference in New Issue
Block a user