fixed golint issues

This commit is contained in:
Viktor Nikolaiev 2017-08-31 10:30:48 +03:00 committed by Jinzhu
parent 3b6d790e93
commit fce49136e8
1 changed files with 3 additions and 3 deletions

View File

@ -121,15 +121,15 @@ type EncryptedData []byte
func (data *EncryptedData) Scan(value interface{}) error { func (data *EncryptedData) Scan(value interface{}) error {
if b, ok := value.([]byte); ok { if b, ok := value.([]byte); ok {
if len(b) < 3 || b[0] != '*' || b[1] != '*' || b[2] != '*'{ if len(b) < 3 || b[0] != '*' || b[1] != '*' || b[2] != '*' {
return errors.New("Too short") return errors.New("Too short")
} }
*data = b[3:] *data = b[3:]
return nil return nil
} else {
return errors.New("Bytes expected")
} }
return errors.New("Bytes expected")
} }
func (data EncryptedData) Value() (driver.Value, error) { func (data EncryptedData) Value() (driver.Value, error) {