[ 
https://issues.apache.org/jira/browse/MYFACES-2905?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12905460#action_12905460
 ] 

Matthias Weßendorf commented on MYFACES-2905:
---------------------------------------------

Problem is that in:

        else if (!appConfigResources.isEmpty())
        {
            //Relative ordering
            for (FacesConfig resource : appConfigResources)
            {
                if (resource.getOrdering() != null)
                {
                    if (log.isLoggable(Level.WARNING))
                    {
                        log.warning("<absolute-ordering> element found in 
application " +
                                "configuration resource "+resource.getName()+". 
" +
                                "This description will be ignored and the 
actions described " +
                                "in <ordering> elements will be taken into 
account instead.");
                    }
                }
            }
......................

we check incorrectly for ordering.

changing to if (resource.getAbsoluteOrdering() != null) is the fix

> [JSF2] absolute-ordering warning
> --------------------------------
>
>                 Key: MYFACES-2905
>                 URL: https://issues.apache.org/jira/browse/MYFACES-2905
>             Project: MyFaces Core
>          Issue Type: Bug
>    Affects Versions: 2.0.1
>            Reporter: Matthias Weßendorf
>            Assignee: Matthias Weßendorf
>
> See thread for this
> http://markmail.org/message/cco2pdvuzlecs6da

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to