Move default case to the first line of FormatError

This commit is contained in:
Jingwen Owen Ou 2014-04-01 08:55:15 -07:00
Родитель cdf9b757e2
Коммит 6fd00d4ab0
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -474,6 +474,8 @@ func (client *Client) apiHost() string {
func FormatError(action string, err error) (ee error) {
switch e := err.(type) {
default:
ee = err
case *octokit.ResponseError:
statusCode := e.Response.StatusCode
var reason string
@ -504,8 +506,6 @@ func FormatError(action string, err error) (ee error) {
case *AuthError:
errStr := fmt.Sprintf("Error %s: Unauthorized (HTTP 401)", action)
ee = fmt.Errorf(errStr)
default:
ee = err
}
return