Skip to content

Commit 07deb2c

Browse files
committed
Clean up some bad code. Bad gitbot
1 parent aeaaec9 commit 07deb2c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

sql/system_booltype.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,6 @@ func (t systemBoolType) Convert(v interface{}) (interface{}, error) {
107107
if intVal >= math.MinInt8 && intVal <= math.MaxInt8 {
108108
return int8(intVal), nil
109109
}
110-
return nil, ErrInvalidSystemVariableValue.New(t.varName, v)
111-
return nil, ErrInvalidSystemVariableValue.New(t.varName, v)
112110
}
113111
return nil, ErrInvalidSystemVariableValue.New(t.varName, v)
114112
}

0 commit comments

Comments
 (0)