#5321 Add missing return statement for bad credentials
authorCherian Mathew <c.mathew@bgbm.org>
Mon, 12 Oct 2015 14:46:33 +0000 (16:46 +0200)
committerCherian Mathew <c.mathew@bgbm.org>
Mon, 12 Oct 2015 14:46:33 +0000 (16:46 +0200)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/store/LoginManager.java

index 79f06e52435f2816aad730342610f69f7ee5a336..04f2d13d0f9b815556e2e074fa9e51a2bd27eb79 100644 (file)
@@ -68,6 +68,7 @@ public class LoginManager extends Observable implements IConversationEnabled, IC
                doAuthenticate(username, password);
            } catch (CdmAuthenticationException e) {
                MessagingUtils.warningDialog("Could not authenticate", this, e.getMessage());
+               return false;
         }
            return true;
        }