lint: remove empty branches (SA9003)

Empty branches are effectively dead code and should therefore be
removed.

Signed-off-by: Moritz Poldrack <moritz@poldrack.dev>
Acked-by: Robin Jarry <robin@jarry.cc>
This commit is contained in:
Moritz Poldrack 2022-07-29 21:05:12 +02:00 committed by Robin Jarry
parent b92e9dab19
commit f70eecc7cb
1 changed files with 4 additions and 4 deletions

View File

@ -70,10 +70,10 @@ func (w *IMAPWorker) connect() (*client.Client, error) {
if w.config.user != nil {
username := w.config.user.Username()
password, hasPassword := w.config.user.Password()
if !hasPassword {
// TODO: ask password
}
// TODO: 2nd parameter false if no password is set. ask for it
// if unset.
password, _ := w.config.user.Password()
if w.config.oauthBearer.Enabled {
if err := w.config.oauthBearer.Authenticate(