Merge pull request #4073 from gyuho/remove_seed

storage: remove unnecessary math/rand seed
release-2.3
Jonathan Boulle 2015-12-25 19:14:35 +01:00
commit 70bcde89bc
1 changed files with 0 additions and 2 deletions

View File

@ -18,7 +18,6 @@ import (
"crypto/rand"
"encoding/binary"
"math"
mrand "math/rand"
"os"
"reflect"
"testing"
@ -845,7 +844,6 @@ func (i *fakeIndex) Equal(b index) bool { return false }
func createBytesSlice(bytesN, sliceN int) [][]byte {
rs := [][]byte{}
for len(rs) != sliceN {
mrand.Seed(time.Now().UnixNano())
v := make([]byte, bytesN)
if _, err := rand.Read(v); err != nil {
panic(err)