You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sling.apache.org by "Antonio Sanso (JIRA)" <ji...@apache.org> on 2015/02/10 15:05:11 UTC

[jira] [Created] (SLING-4399) Regression in the SlingAuthenticator

Antonio Sanso created SLING-4399:
------------------------------------

             Summary: Regression in the SlingAuthenticator
                 Key: SLING-4399
                 URL: https://issues.apache.org/jira/browse/SLING-4399
             Project: Sling
          Issue Type: Bug
          Components: Authentication
            Reporter: Antonio Sanso
            Assignee: Antonio Sanso


SLING-3936 introduced a regression.
Obseving the diff

{code}
- for (int i = 0; !done && i < holderList.size(); i++) {
- final AbstractAuthenticationHandlerHolder holder = holderList.get(i);
+ for (AbstractAuthenticationHandlerHolder holder : holderList) {
{code}

it is clear that {{!done}} has been lost in translation




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)