Remove error return value from ConvertToOptions

ConvertToOptions can't return any error.
This commit is contained in:
akarki15
2016-11-15 22:03:32 -05:00
parent b1fdbf714b
commit fedde804e3
4 changed files with 197 additions and 277 deletions

View File

@@ -28,7 +28,7 @@ func (b Bookmark) SSHInfoIsEmpty() bool {
return b.Ssh.User == "" && b.Ssh.Host == "" && b.Ssh.Port == ""
}
func (b Bookmark) ConvertToOptions() (command.Options, error) {
func (b Bookmark) ConvertToOptions() command.Options {
return command.Options{
Url: b.Url,
Host: b.Host,
@@ -37,7 +37,7 @@ func (b Bookmark) ConvertToOptions() (command.Options, error) {
Pass: b.Password,
DbName: b.Database,
Ssl: b.Ssl,
}, nil
}
}
func readServerConfig(path string) (Bookmark, error) {