You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Daniel Heinrich (JIRA)" <de...@myfaces.apache.org> on 2015/01/21 11:36:34 UTC

[jira] [Created] (MYFACES-3950) Copy&Paste bug in checking last modified dates of taglibs.xml

Daniel Heinrich created MYFACES-3950:
----------------------------------------

             Summary: Copy&Paste bug in checking last modified dates of taglibs.xml
                 Key: MYFACES-3950
                 URL: https://issues.apache.org/jira/browse/MYFACES-3950
             Project: MyFaces Core
          Issue Type: Bug
          Components: General
    Affects Versions: 2.2.7
            Reporter: Daniel Heinrich


in org.apache.myfaces.config.FacesConfigurator:397

instead of:

            for (int i = 0, size = faceletFilesList.length; i < size; i++)
            {
                String systemId = configFilesList.get(i);

it should be:

            for (int i = 0, size = faceletFilesList.length; i < size; i++)
            {
                String systemId = faceletFilesList[i];

This bug causes IndexOutOfBounds Exceptions!



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