瀏覽代碼

common: Remove empty lines

Ricardo Catalinas Jiménez 9 年之前
父節點
當前提交
fbf3b2ede2
共有 1 個文件被更改,包括 0 次插入2 次删除
  1. 0 2
      common/bytes.go

+ 0 - 2
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) {