common: Remove empty lines

This commit is contained in:
Ricardo Catalinas Jiménez 2016-02-20 18:55:32 +00:00
parent 3d971c5a34
commit fbf3b2ede2
1 changed files with 0 additions and 2 deletions

View File

@ -154,7 +154,6 @@ func Hex2Bytes(str string) []byte {
}
func Hex2BytesFixed(str string, flen int) []byte {
h, _ := hex.DecodeString(str)
if len(h) == flen {
return h
@ -167,7 +166,6 @@ func Hex2BytesFixed(str string, flen int) []byte {
return hh
}
}
}
func StringToByteFunc(str string, cb func(str string) []byte) (ret []byte) {