From fbf3b2ede2f8286e858205f171391883fcb56b28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Catalinas=20Jim=C3=A9nez?= Date: Sat, 20 Feb 2016 18:55:32 +0000 Subject: [PATCH] common: Remove empty lines --- common/bytes.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/bytes.go b/common/bytes.go index ba6987a9ec..389ac0e4b7 100644 --- a/common/bytes.go +++ b/common/bytes.go @@ -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) {