remove unnecessary error

pull/432/head
Darien Raymond 8 years ago
parent c0ea29a2ed
commit f2e149e1d0
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

@ -7,7 +7,6 @@ import (
) )
var ( var (
ErrUserMissing = errors.New("User is not specified.")
ErrAccountMissing = errors.New("Account is not specified.") ErrAccountMissing = errors.New("Account is not specified.")
ErrNonMessageType = errors.New("Not a protobuf message.") ErrNonMessageType = errors.New("Not a protobuf message.")
ErrUnknownAccountType = errors.New("Unknown account type.") ErrUnknownAccountType = errors.New("Unknown account type.")

@ -32,7 +32,7 @@ func NewServer(ctx context.Context, config *ServerConfig) (*Server, error) {
return nil, errors.New("Shadowsocks|Server: No space in context.") return nil, errors.New("Shadowsocks|Server: No space in context.")
} }
if config.GetUser() == nil { if config.GetUser() == nil {
return nil, protocol.ErrUserMissing return nil, errors.New("Shadowsocks|Server: User is not specified.")
} }
rawAccount, err := config.User.GetTypedAccount() rawAccount, err := config.User.GetTypedAccount()

Loading…
Cancel
Save