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)